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
Some oAuth2 clients are registred with option token_endpoint_auth_method = client_secret_post. That means when they are trying to get token using /token endpoint they have to provide client_secret and client_id using request body instead of Authorization header.
Current implementation supporting only clients registered with option token_endpoint_auth_method = client_secret_basic.
It would be nice to have way to control which method will swagger-ui use to get token. As nothing was mentioned in OpenAPI spec maybe we can just add dropdown so user can pick desired method.
The text was updated successfully, but these errors were encountered:
Some oAuth2 clients are registred with option token_endpoint_auth_method = client_secret_post. That means when they are trying to get token using /token endpoint they have to provide client_secret and client_id using request body instead of Authorization header.
Current implementation supporting only clients registered with option token_endpoint_auth_method = client_secret_basic.
More about this here: https://tools.ietf.org/html/rfc7591#section-2
It would be nice to have way to control which method will swagger-ui use to get token. As nothing was mentioned in OpenAPI spec maybe we can just add dropdown so user can pick desired method.
The text was updated successfully, but these errors were encountered: