Skip to content
Snippets Groups Projects
Unverified Commit 8ac8dca9 authored by Sean Liao's avatar Sean Liao Committed by GitHub
Browse files

include granttypes in example config (#3027)


Signed-off-by: default avatarSean Liao <sean+git@liao.dev>
parent dcf7b185
Branches
Tags
No related merge requests found
...@@ -91,7 +91,16 @@ telemetry: ...@@ -91,7 +91,16 @@ telemetry:
# Default values shown below # Default values shown below
# oauth2: # oauth2:
# use ["code", "token", "id_token"] to enable implicit flow for web-only clients # grantTypes determines the allowed set of authorization flows.
# grantTypes:
# - "authorization_code"
# - "refresh_token"
# - "implicit"
# - "password"
# - "urn:ietf:params:oauth:grant-type:device_code"
# - "urn:ietf:params:oauth:grant-type:token-exchange"
# responseTypes determines the allowed response contents of a successful authorization flow.
# use ["code", "token", "id_token"] to enable implicit flow for web-only clients.
# responseTypes: [ "code" ] # also allowed are "token" and "id_token" # responseTypes: [ "code" ] # also allowed are "token" and "id_token"
# By default, Dex will ask for approval to share data with application # By default, Dex will ask for approval to share data with application
# (approval for sharing data from connected IdP to Dex is separate process on IdP) # (approval for sharing data from connected IdP to Dex is separate process on IdP)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment