-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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 Basic Auth #2106
Labels
Comments
Indeed this is a must-have feature to fully migrate the Oauth 2.0-supported API testing to Bruno |
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Apr 25, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Apr 25, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Apr 25, 2024
5 tasks
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Apr 25, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Apr 25, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Apr 25, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Apr 25, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Apr 25, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Apr 25, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Apr 25, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Apr 25, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
May 5, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
May 5, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
May 5, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
May 5, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
May 5, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
May 5, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
May 6, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
May 6, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
May 6, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
May 6, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
May 7, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
May 7, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
May 7, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
May 7, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
May 7, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Jul 26, 2024
Please release this feature as soon as possible. I am currently stuck with my IAM which only supports client credentials as basic auth and denies exchanging authz code into a token. |
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Aug 22, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Aug 22, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Aug 22, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Aug 22, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Aug 22, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Aug 22, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Aug 22, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Aug 22, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Aug 28, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Aug 28, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Aug 28, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Aug 28, 2024
2 tasks
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Sep 23, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Sep 23, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Sep 23, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Sep 23, 2024
pietrygamat
added a commit
to pietrygamat/bruno
that referenced
this issue
Sep 23, 2024
2 tasks
1 task
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have checked the following:
Describe the feature you want to add
There are multiple ways of authenticating OAuth 2.0 Clients at the
/oauth2/token
:RFC 6749 section 2.3.1
client_secret_basic
) - the OAuth 2.0 Client ID and secret are sent in the HTTP Header (Authorization: basic ....)client_secret_post
) - the OAuth 2.0 Client ID and secret are sent in the POST body (Content-Type: application/x-www-form-urlencoded)Currently, bruno only supports the
client_secret_post
method for client authentication. This feature request proposes adding support forclient_secret_basic
as configuration option.Mockups or Images of the feature
The text was updated successfully, but these errors were encountered: