Skip to content

Commit afe676b

Browse files
committed
fixing web auth snippet and changing references to current page links to not open externally
1 parent ee4ab91 commit afe676b

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed

articles/_includes/_web_origins.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@
22

33
### Configure Allowed Web Origins
44

5-
You need to add the URL for your app to the **Allowed Web Origins** field in your <a href="${manage_url}/#/applications/${account.clientId}/settings" target="_blank" rel="noreferrer">pplication Settings</a>
6-
7-
[Application Settings](${manage_url}/#/applications/${account.clientId}/settings). If you don't register your application URL here, the application will be unable to silently refresh the authentication tokens and your users will be logged out the next time they visit the application, or refresh the page.
5+
You need to add the URL for your app to the **Allowed Web Origins** field in your <a href="${manage_url}/#/applications/${account.clientId}/settings" target="_blank" rel="noreferrer">Application Settings</a>. If you don't register your application URL here, the application will be unable to silently refresh the authentication tokens and your users will be logged out the next time they visit the application, or refresh the page.

articles/flows/guides/device-auth/includes/index.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Auth0 makes it easy for your app to implement the Device Authorization flow usin
1010

1111
**Before beginning this tutorial:**
1212

13-
* Check <a href="#limitations" target="_blank" rel="noreferrer">limitations</a> to be sure the Device Authorization flow is suitable for your implementation.
13+
* Check [limitations](#limitations) to be sure the Device Authorization flow is suitable for your implementation.
1414

1515
* <a href="/dashboard/guides/applications/register-app-native" target="_blank" rel="noreferrer">Register the Application with Auth0</a>.
1616
* Select an **Application Type** of **Native**.
@@ -28,17 +28,17 @@ Auth0 makes it easy for your app to implement the Device Authorization flow usin
2828

2929
## Steps
3030

31-
1. <a href="#request-device-code" target="_blank" rel="noreferrer">Request device code</a> (Device Flow): Request a device code that the user can use to authorize the device.
32-
2. <a href="#request-device-activation" target="_blank" rel="noreferrer">Request device activation</a> (Device Flow): Request that the user authorize the device using their laptop or smartphone.
33-
3. <a href="#request-tokens" target="_blank" rel="noreferrer">Request Tokens</a> (Device Flow): Poll the token endpoint to request a token.
34-
4. <a href="#user-authorization" target="_blank" rel="noreferrer">User authorization</a> (Browser Flow): The user authorizes the device, so the device can receive tokens.
35-
5. <a href="#receive-tokens" target="_blank" rel="noreferrer">Receive Tokens</a> (Device Flow): After the user successfully authorizes the device, receive tokens.
36-
6. <a href="#call-your-api" target="_blank" rel="noreferrer">Call your API</a> (Device Flow): Use the retrieved Access Token to call your API.
37-
7. <a href="#refresh-tokens" target="_blank" rel="noreferrer">Refresh Tokens</a> (Device Flow): Use a Refresh Token to request new tokens when the existing ones expire.
31+
1. [Request device code](#request-device-code) (Device Flow): Request a device code that the user can use to authorize the device.
32+
2. [Request device activation](#request-device-activation) (Device Flow): Request that the user authorize the device using their laptop or smartphone.
33+
3. [Request Tokens](#request-tokens) (Device Flow): Poll the token endpoint to request a token.
34+
4. [User authorization](#user-authorization) (Browser Flow): The user authorizes the device, so the device can receive tokens.
35+
5. [Receive Tokens](#receive-tokens) (Device Flow): After the user successfully authorizes the device, receive tokens.
36+
6. [Call your API](#call-your-api) (Device Flow): Use the retrieved Access Token to call your API.
37+
7. [Refresh Tokens](#refresh-tokens) (Device Flow): Use a Refresh Token to request new tokens when the existing ones expire.
3838

39-
Optional: <a href="#sample-use-cases" target="_blank" rel="noreferrer">Explore Sample Use Cases</a>
39+
Optional: [Explore Sample Use Cases](#sample-use-cases)
4040

41-
Optional: <a href="#troubleshooting" target="_blank" rel="noreferrer">Troubleshooting</a>
41+
Optional: [Troubleshooting](#troubleshooting)
4242

4343
<%= include('./request-device-code') %>
4444

0 commit comments

Comments
 (0)