-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OAuth 2.0 - Client Credentials - Support additional fields for token requests #2002
Comments
I'm having this same issue. I need the Audience field to authenticate successfully using client credentials for Oauth2.0. |
Having the same issue current auth solution is insuffient. Keeps me from switching over 100% to Bruno. |
I can see 3 ways of approaching it:
but the whole grammar shennanigans confuse me. @helloanoop , do you have any thoughts, which approach is worth pursuing? |
I'm just using one of the auth solutions in the scriptmania thread, and it's working great. |
Hi is there any progress on this? Would be nice to have this integrated so the auth flow works. |
When requesting OAuth2 in 'client credentials' we need to include the 'Audience' parameter. Although 'Scope' is supported, it's not possible to send 'Audience'. I managed to create a workaround, where I have a specific endpoint for getting the access token, and storing it as an environment variable, but it would be better to have it directly supported in the Auth section. |
Sam problem here, that filed will be added? 👍 |
Same, for example many of apis where auth is implemented by microsoft they require some extra keys in either the body or the header. very often something called a "resource". Sorry to compare :) but postman has an extra section for this specific thing, I think this would be the easiest implementation. |
Also still waiting for the possibility of an Audience parameter. :( |
Hi,
the current implementation of the client credential flow is unfortunately not working with auth0.
Instead of the scope parameter, they use an audience field to specify for which api the token should be generated
https://auth0.com/docs/get-started/authentication-and-authorization-flow/client-credentials-flow/call-your-api-using-the-client-credentials-flow
I know that it does not make sense to add a new field for every implementation that differs from the standard but maybe an option to add new fields to the request via defining key and value would be flexible enough to solve this and other special requierments.
BR
Philipp
The text was updated successfully, but these errors were encountered: