You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the Implicit Flow, all response parameters are added to the fragment component of the Redirection URI, as specified in OAuth 2.0 Multiple Response Type Encoding Practices [OAuth.Responses], unless a different Response Mode was specified.
But this isn't the case in the implementation, meaning it always returns a fragment. AuthGrant uses ResponseHandler to handle the requested response mode, but this can't be used for the ImplicitGrant as it is tightly coupled to the auth code flow (using AuthenticationRequest, the code, etc).
The text was updated successfully, but these errors were encountered:
According to the spec:
But this isn't the case in the implementation, meaning it always returns a fragment.
AuthGrant
usesResponseHandler
to handle the requested response mode, but this can't be used for theImplicitGrant
as it is tightly coupled to the auth code flow (usingAuthenticationRequest
, the code, etc).The text was updated successfully, but these errors were encountered: