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
OAuth defines client credentials flow as a means of obtaining access token on behalf of the client application, without end-user authentication. This token is used for M2M requests, like an API key.
Describe the solution you'd like
The token endpoint initiates the client credentials flow if the grant_type request parameter value is client_credentials.
The code parameter must not be expected in this case.
The client must be authenticated according to their configured token_endpoint_auth_method.
If successful, the server must issue a new access token and ID token (without refresh token!) and return them in the response.
OAuth defines client credentials flow as a means of obtaining access token on behalf of the client application, without end-user authentication. This token is used for M2M requests, like an API key.
Describe the solution you'd like
grant_type
request parameter value isclient_credentials
.code
parameter must not be expected in this case.token_endpoint_auth_method
.See RFC6749#4.4 for details.
The text was updated successfully, but these errors were encountered: