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
These are currently ignored, other than as provided to the client via the discovery response. The client can still use unsupported options in requests and have them processed. For example
responseTypesSupported should be checked when processing an authorization request
algorithmsSupported should be checked in id token creation, user info responses, request object (when implemented) and client auth signing. It may be sufficient to check some of them when registering the client, since the client's specific algorithms are stored with its data.
Both these and clientAuthMethodsSupported should be checked when registering the client.
The text was updated successfully, but these errors were encountered:
Checks registered algorithms and client auth method during registration
against those supported by the server configuration and returns an
invalid metadata error if the values are not supported.
See #22.
If the client registers with the implicit grant as but the OP does not
support any response types which imply the implicit grant, a metadata
error is returned.
See #22.
These are currently ignored, other than as provided to the client via the discovery response. The client can still use unsupported options in requests and have them processed. For example
responseTypesSupported
should be checked when processing an authorization requestalgorithmsSupported
should be checked in id token creation, user info responses, request object (when implemented) and client auth signing. It may be sufficient to check some of them when registering the client, since the client's specific algorithms are stored with its data.Both these and
clientAuthMethodsSupported
should be checked when registering the client.The text was updated successfully, but these errors were encountered: