This site contains the documentation that is relevant to older WSO2 product versions and offerings.
For the latest WSO2 documentation, visit https://wso2.com/documentation/.

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 11 Current »

This section guides you through consuming an OpenID connect implicit client profile that is based on implicit flow. The following steps outline the flow according to the OpenID specification. 

  1. The client prepares an authentication request containing the desired request parameters.
  2. The client sends the request to the authorization server.
  3. The authorization server authenticates the end-user.
  4. The authorization server obtains end-user consent/authorization.
  5. The athorization server sends the end-user back to the client with an ID token and, if requested, an access token.
  6. The client validates the ID token and retrieves the end-user's subject identifier.

The following parameters are mandatory and have to be included in the authorization request in order to execute this flow. 

Note: The following parameters have a different usage in the implicit flow vs its usage in the authorization code flow.

  • response_type
  • redirect_uri/callback_uri
  • nonce
Parameter
Description
scopeSpecifies the behaviour of the request. 
Value: "openid" 
client_idThe OAuth 2.0 Client Identifier valid at the authorization server.
response_type

Determines which authorization processing flow is to be used, including what parameters are returned from the endpoints used.
Value:
"id_tokentoken" or "id_token"

  • id_tokentoken:  The ID token is issued together with the access token.
  • id_token: Only the id token is returned and no access token is returned.
redirect_uri/callback_uriThe URI which the authorization server should send the response to.
nonceAssociates a client session with an ID Token to mitigate replay attacks. The value is passed through unmodified from the suthentication request to the ID Token.
Related Topics
  • No labels