Skip to content

Commit

Permalink
updated link and other minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
lrzhou25 committed Jan 6, 2025
1 parent 49dfdc4 commit 21f7503
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions articles/api/authentication/_login.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"http_badge": "badge-primary",
"http_method": "POST",
"path": "/bc-authorize",
"link": "#social"
"link": "#backchannel-login"
}) %>

:::note
Expand Down Expand Up @@ -65,7 +65,7 @@ The request should be approved or rejected on the user’s authentication device

### Remarks

- The following code sample is an example login hint:
- The following code sample is an example login hint:

```http
{
Expand All @@ -75,13 +75,14 @@ The request should be approved or rejected on the user’s authentication device
}
```

White space is not significant. Replace the `[TENANT_DOMAIN]` with your tenant domain or custom domain. Replace the `[USER ID]` with a valid `user_id` for the authorizing user returned from the [User Search APIs](https://auth0.com/docs/manage-users/user-search).
White space is not significant. Replace the `[TENANT_DOMAIN]` with your tenant domain or custom domain. Replace the `[USER ID]` with a valid `user_id` for the authorizing user returned from the [User Search APIs](https://auth0.com/docs/manage-users/user-search).

Include an optional parameter for application authentication in the request:

- Include an optional parameter for application authentication in the request:
- Client Secret with HTTP Basic auth, in which case no parameters are required. The `client_id` and `client_secret` are passed in a header.
- Client Secret Post, in which case the `client_id` and `client_secret` are required.
- Private Key JWT, where the `client_id`, `client_assertion` and `client_assertion` type are required.
- mTLS, where the `client_id` parameter is required and the `client-certificate` and `client-certificate-ca-verified` headers are required.
- Client Secret with HTTP Basic auth, in which case no parameters are required. The `client_id` and `client_secret` are passed in a header.
- Client Secret Post, in which case the `client_id` and `client_secret` are required.
- Private Key JWT, where the `client_id`, `client_assertion` and `client_assertion` type are required.
- mTLS, where the `client_id` parameter is required and the `client-certificate` and `client-certificate-ca-verified` headers are required.

## POST /oauth/token

Expand Down Expand Up @@ -154,11 +155,12 @@ Once you have exchanged an `auth_req_id` for an ID or access token, it is no lon

### Remarks

- Include an optional parameter for application authentication in the request:
- Client Secret with HTTP Basic auth, in which case no parameters are required. The `client_id` and `client_secret` are passed in a header.
- Client Secret Post, in which case the `client_id` and `client_secret` are required.
- Private Key JWT, where the `client_id`, `client_assertion` and `client_assertion` type are required.
- mTLS, where the `client_id` parameter is required and the `client-certificate` and `client-certificate-ca-verified` headers are required.
Include an optional parameter for application authentication in the request:

- Client Secret with HTTP Basic auth, in which case no parameters are required. The `client_id` and `client_secret` are passed in a header.
- Client Secret Post, in which case the `client_id` and `client_secret` are required.
- Private Key JWT, where the `client_id`, `client_assertion` and `client_assertion` type are required.
- mTLS, where the `client_id` parameter is required and the `client-certificate` and `client-certificate-ca-verified` headers are required.

# Login

Expand Down

0 comments on commit 21f7503

Please sign in to comment.