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
`oauth2c`provides a simple and intuitive interface that allows developers to quickly and easily experiment with different grant types and client authentication methods.
8
+
`oauth2c`is a command-line tool that simplifies the process of experimenting with different grant types and client authentication methods for OAuth 2.0.
[Learn more about implicit flow](https://cloudentity.com/developers/basics/oauth-grant-types/implicit-flow/)
119
+
113
120
#### Hybrid
114
121
115
122
To use the OAuth2 hybrid flow to obtain an authorization code and an ID token, the client first sends an authorization request to the OAuth2 provider. The request should include the code and id_token response types.
[Learn more about client secret basic](https://cloudentity.com/developers/basics/oauth-client-authentication/client-secret-authentication/#process-of-authentication-with-client_secret_basic)
230
+
213
231
#### Client Secret Post
214
232
215
233
This client authentication method involves the client sending its client ID and client secret as part of
[Learn more about client secret post](https://cloudentity.com/developers/basics/oauth-client-authentication/client-secret-authentication/#process-of-authentication-with-client_secret_post)
248
+
229
249
#### Client Secret JWT
230
250
231
251
This client authentication method involves the client signing a JSON Web Token (JWT) using its client secret,
[Learn more about client secret jwt](https://cloudentity.com/developers/basics/oauth-client-authentication/client-secret-authentication/#process-of-authentication-with-client_secret_jwt)
265
+
244
266
#### Private Key JWT
245
267
246
268
This client authentication method involves the client signing a JSON Web Token (JWT) using its private key,
0 commit comments