This commit is contained in:
juanifioren 2015-07-30 15:50:10 -03:00
commit 3e196ee5b1

8
DOC.md
View file

@ -181,17 +181,19 @@ OPTIONAL.
##### OIDC_IDTOKEN_SUB_GENERATOR
OPTIONAL. Subject Identifier. A locally unique and never reassigned identifier within the Issuer for the End-User, which is intended to be consumed by the Client.
Is just a function that receives a `user` object. Returns a unique string for the given user.
Is just a function that receives a `user` object. Returns a unique `string` for the given user.
Default is:
```python
def default_sub_generator(user):
return user.id
return str(user.id)
```
##### OIDC_RSA_KEY_FOLDER
REQUIRED. Path of the folder where `OIDC_RSA_KEY.pem` lives. This RSA key can be easily created using `python manage.py creatersakey` command.
REQUIRED. Path of the folder where `OIDC_RSA_KEY.pem` lives. Used to sign/encrypt `id_token`. The package will automatically generate a public key and expose it in the `jwks_uri` endpoint.
You can easily create it using `python manage.py creatersakey` command.
##### OIDC_SKIP_CONSENT_ENABLE
OPTIONAL. If enabled, the Server will save the user consent given to a specific client, so that user won't be prompted for the same authorization multiple times.