Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added auth0 auth adapter description. #843

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions _includes/parse-server/third-party-auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Parse Server supports 3rd party authentication with

* Apple
* Auth0
* Facebook
* Github
* Google
Expand Down Expand Up @@ -125,6 +126,31 @@ Using Apple Sign In through the Apple JS SDK or through the REST service will on

Learn more about [Sign In With Apple](https://developer.okta.com/blog/2019/06/04/what-the-heck-is-sign-in-with-apple).

### Auth0 `authData`

```js
{
"auth0": {
"id": "user's Auth0 identifier",
"id_token": "the identity token for the user"
}
}
```

The options passed to Parse server:
```js
{
auth: {
auth0: {
tenant_id: "your auth0 tenant identifier (e.g. example.eu.auth0.com)" // REQUIRED
client_id: "your auth0 client identifier" // REQUIRED
},
}
}
```

Learn more about [Auth0](https://auth0.com/).

### Github `authData`

```js
Expand Down