From 8f8f024ee060cb2ce1938f368541aeea1e5ef84f Mon Sep 17 00:00:00 2001 From: Lucy Zhou Date: Wed, 7 Aug 2024 11:16:53 -0700 Subject: [PATCH 1/6] Updated redirects file --- config/redirects.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/redirects.js b/config/redirects.js index 727a73be24..b8c5b6cd1f 100644 --- a/config/redirects.js +++ b/config/redirects.js @@ -1725,6 +1725,10 @@ const redirects = [ ], to: '/get-started/applications/update-application-connections', }, + { + from: ['/get-started/applications/configure-mtls/set-up-resource-server-for-token-binding'], + to: '/get-started/applications/configure-sender-constraining/configure-resource-server-for-sender-constraining', + }, { from: [ '/applications/concepts/app-types-confidential-public', From 8f32933618a064e9c3b61db275acb463bb17f43d Mon Sep 17 00:00:00 2001 From: Lucy Zhou Date: Mon, 12 Aug 2024 10:40:42 -0700 Subject: [PATCH 2/6] Added redirect for token binding --- config/redirects.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/redirects.js b/config/redirects.js index b8c5b6cd1f..60b66dfe19 100644 --- a/config/redirects.js +++ b/config/redirects.js @@ -7678,6 +7678,12 @@ const redirects = [ ], to: '/secure/tokens/access-tokens', }, + { + from: [ + '/secure/tokens/access-tokens/token-binding', + ], + to: '/get-started/applications/configure-sender-constraining', + }, { from: [ '/tokens/guides/validate-access-tokens', From 56a3a75a8d2940479f136a4094d818c477507fd7 Mon Sep 17 00:00:00 2001 From: amanda-vanscoy_atko Date: Mon, 12 Aug 2024 14:50:56 -0400 Subject: [PATCH 3/6] HRI update and fix on second redirect --- articles/api/authentication/api-authz/_highly-regulated.md | 4 ++-- config/redirects.js | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/articles/api/authentication/api-authz/_highly-regulated.md b/articles/api/authentication/api-authz/_highly-regulated.md index e9170a0461..cb220f7050 100644 --- a/articles/api/authentication/api-authz/_highly-regulated.md +++ b/articles/api/authentication/api-authz/_highly-regulated.md @@ -1,5 +1,5 @@ # Authorization Code Flow with Enhanced Privacy Protection - + ## Push Authorization Requests (PAR) <%= include('../../../_includes/_http-method', { @@ -84,7 +84,7 @@ Content-Type: application/json ``` ::: note -Highly Regulated Identity is currently available for Enterprise customers under Limited Early Access. To learn more about this program, contact [Auth0 Support](http://support.auth0.com/). + To use Highly Regulated Identity features, you must have an Enterprise Plan with Highly Regulated Identity add-on. Refer to [Auth0 Pricing](https://auth0.com/pricing) for details. ::: Authorization Code Flow with [Pushed Authorization Requests (PAR)](/get-started/authentication-and-authorization-flow/authorization-code-flow/authorization-code-flow-with-par) uses the `/oauth/par` endpoint to allow applications to send the authorization parameters usually sent in a `GET` request to `/authorize`. PAR uses a POST method from the backend to keep parameter values secure. The `/oauth/par` endpoint accepts all authorization parameters which can be proivided to `/authorize`. Assuming the call to the `/oauth/par` endpoint is valid, Auth0 will respond with a `redirect_uri` value that can be used as a parameter for the `/authorize` endpoint. diff --git a/config/redirects.js b/config/redirects.js index 60b66dfe19..204bde4388 100644 --- a/config/redirects.js +++ b/config/redirects.js @@ -7679,9 +7679,7 @@ const redirects = [ to: '/secure/tokens/access-tokens', }, { - from: [ - '/secure/tokens/access-tokens/token-binding', - ], + from: ['/secure/tokens/access-tokens/token-binding'], to: '/get-started/applications/configure-sender-constraining', }, { From d67ac09aeba9186b9736721a57d0aaca61240767 Mon Sep 17 00:00:00 2001 From: amanda-vanscoy_atko Date: Tue, 13 Aug 2024 12:53:29 -0400 Subject: [PATCH 4/6] Updates from Docs-4220 For Authentication API - removed required tag from client_id - signup and extra content from client_id - change password --- articles/api/authentication/_change-password.md | 4 ++-- articles/api/authentication/_sign-up.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/articles/api/authentication/_change-password.md b/articles/api/authentication/_change-password.md index c543017fc1..249b21b2d1 100644 --- a/articles/api/authentication/_change-password.md +++ b/articles/api/authentication/_change-password.md @@ -1,5 +1,5 @@ # Change Password - + ```http POST https://${account.namespace}/dbconnections/change_password Content-Type: application/json @@ -64,7 +64,7 @@ Note: This endpoint only works for database connections. | Parameter | Description | |:-----------------|:------------| -| `client_id` | The `client_id` of your client. We strongly recommend including a Client ID so that the email template knows from which client the request was triggered. | +| `client_id` | The `client_id` of your client.| | `email`
Required | The user's email address. | | `connection`
Required | The name of the database connection configured to your client. | | `organization` | The `organization_id` of the Organization associated with the user. | diff --git a/articles/api/authentication/_sign-up.md b/articles/api/authentication/_sign-up.md index fb6bbd2035..a1b4386c12 100644 --- a/articles/api/authentication/_sign-up.md +++ b/articles/api/authentication/_sign-up.md @@ -1,5 +1,5 @@ # Signup - + ```http POST https://${account.namespace}/dbconnections/signup Content-Type: application/json @@ -85,7 +85,7 @@ This endpoint only works for database connections. | Parameter | Description | |:-----------------|:------------| -| `client_id`
Required | The `client_id` of your client. | +| `client_id` | The `client_id` of your client. | | `email`
Required | The user's email address. | | `password`
Required | The user's desired password. | | `connection`
Required | The name of the database configured to your client. | From 0d806a1ee1034383f3b54bc97d2a7f291ab2ad7f Mon Sep 17 00:00:00 2001 From: amanda-vanscoy_atko Date: Mon, 19 Aug 2024 15:58:13 -0400 Subject: [PATCH 5/6] Commit to add signature --- articles/api/authentication/api-authz/_highly-regulated.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/api/authentication/api-authz/_highly-regulated.md b/articles/api/authentication/api-authz/_highly-regulated.md index cb220f7050..cae14f5303 100644 --- a/articles/api/authentication/api-authz/_highly-regulated.md +++ b/articles/api/authentication/api-authz/_highly-regulated.md @@ -84,7 +84,7 @@ Content-Type: application/json ``` ::: note - To use Highly Regulated Identity features, you must have an Enterprise Plan with Highly Regulated Identity add-on. Refer to [Auth0 Pricing](https://auth0.com/pricing) for details. + To use Highly Regulated Identity features, you must have an Enterprise Plan with the Highly Regulated Identity add-on. To learn more, read [Auth0 Pricing](https://auth0.com/pricing) for details. ::: Authorization Code Flow with [Pushed Authorization Requests (PAR)](/get-started/authentication-and-authorization-flow/authorization-code-flow/authorization-code-flow-with-par) uses the `/oauth/par` endpoint to allow applications to send the authorization parameters usually sent in a `GET` request to `/authorize`. PAR uses a POST method from the backend to keep parameter values secure. The `/oauth/par` endpoint accepts all authorization parameters which can be proivided to `/authorize`. Assuming the call to the `/oauth/par` endpoint is valid, Auth0 will respond with a `redirect_uri` value that can be used as a parameter for the `/authorize` endpoint. From 0e4bf0f91aefd99a66b2f653a1119320a471a40c Mon Sep 17 00:00:00 2001 From: amanda-vanscoy_atko Date: Mon, 19 Aug 2024 16:35:36 -0400 Subject: [PATCH 6/6] new key possibly --- articles/api/authentication/api-authz/_highly-regulated.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/api/authentication/api-authz/_highly-regulated.md b/articles/api/authentication/api-authz/_highly-regulated.md index cae14f5303..9719f7f497 100644 --- a/articles/api/authentication/api-authz/_highly-regulated.md +++ b/articles/api/authentication/api-authz/_highly-regulated.md @@ -84,7 +84,7 @@ Content-Type: application/json ``` ::: note - To use Highly Regulated Identity features, you must have an Enterprise Plan with the Highly Regulated Identity add-on. To learn more, read [Auth0 Pricing](https://auth0.com/pricing) for details. + To use Highly Regulated Identity features, you must have an Enterprise Plan with the Highly Regulated Identity add-on. Refer to [Auth0 Pricing](https://auth0.com/pricing) for details. ::: Authorization Code Flow with [Pushed Authorization Requests (PAR)](/get-started/authentication-and-authorization-flow/authorization-code-flow/authorization-code-flow-with-par) uses the `/oauth/par` endpoint to allow applications to send the authorization parameters usually sent in a `GET` request to `/authorize`. PAR uses a POST method from the backend to keep parameter values secure. The `/oauth/par` endpoint accepts all authorization parameters which can be proivided to `/authorize`. Assuming the call to the `/oauth/par` endpoint is valid, Auth0 will respond with a `redirect_uri` value that can be used as a parameter for the `/authorize` endpoint.