Skip to content

Commit 17b7f8d

Browse files
committed
fix urls
1 parent a113707 commit 17b7f8d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/sso/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Near the bottom of the *Settings* page, toggle **Use Auth0 instead of the IdP to
6161

6262
Alternatively you can also set the Client's SSO flag using the [Auth0 Management API](/api/management/v2#!/Clients/patch_clients_by_id).
6363

64-
Once you have set the SSO flag for your Client in the Auth0 Dashboard, you must add logic to your application to check the user's SSO status. Checking the user's SSO status can only be done via JavaScript by making use of the [`getSSOData`](https://auth0.com/docs/libraries/auth0js#sso) function in the [auth0.js library](https://auth0.com/docs/libraries/auth0js).
64+
Once you have set the SSO flag for your Client in the Auth0 Dashboard, you must add logic to your application to check the user's SSO status. Checking the user's SSO status can only be done via JavaScript by making use of the [`getSSOData`](/libraries/auth0js#sso) function in the [auth0.js library](/libraries/auth0js).
6565

6666
The result of this function will indicate whether an SSO cookie is present, and if so it will return the SSO data of the user which can then subsequently be used to log the user in silently without even displaying Lock.
6767

articles/sso/single-page-apps-sso.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To log a user in silently (i.e. without displaying the Lock screen) the followin
88

99
1. The Client needs to be configured to **Use Auth0 instead of the IdP to do Single Sign On** in the [Clients section of the Auth0 Management Dashboard](${manage_url}/#/clients)
1010
2. An SSO cookie must exist for the tenant's domain. In other words the user must have signed in previously, and the SSO cookie which was saved is still valid.
11-
3. When calling the Auth0 authentication endpoint, the connection name is passed along for which the user must be signed in. This connection name is the same as the one specified in the SSO cookie. You can pass the connection name along either as a parameter when calling the `signin` function of the [**auth0.js** Library](https://auth0.com/docs/libraries/auth0js), or by passing the `connection` query string parameter when calling the `/authorize` endpoint of the [Authentication API](/api/authentication)
11+
3. When calling the Auth0 authentication endpoint, the connection name is passed along for which the user must be signed in. This connection name is the same as the one specified in the SSO cookie. You can pass the connection name along either as a parameter when calling the `signin` function of the [**auth0.js** Library](/libraries/auth0js), or by passing the `connection` query string parameter when calling the `/authorize` endpoint of the [Authentication API](/api/authentication)
1212

1313
## The SSO scenario
1414

@@ -24,7 +24,7 @@ In this document we will be looking specifically how to achieve this in a Single
2424

2525
## Obtaining the SSO cookie information
2626

27-
If a users logs in to any of the applications and then subsequently tries to log in to any of the other applications, you can check to see whether an SSO session is active for that user by making use of the `getSSOData` function in the [auth0.js library](https://auth0.com/docs/libraries/auth0js#sso).
27+
If a users logs in to any of the applications and then subsequently tries to log in to any of the other applications, you can check to see whether an SSO session is active for that user by making use of the `getSSOData` function in the [auth0.js library](/libraries/auth0js#sso).
2828

2929
```js
3030
auth0.getSSOData(function (err, ssoData) {

0 commit comments

Comments
 (0)