Skip to content
Merged
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
28 changes: 28 additions & 0 deletions _includes/parse-server/third-party-auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

Parse Server supports 3rd party authentication with

* Apple
* Facebook
* Facebook AccountKit
* Github
Expand Down Expand Up @@ -119,6 +120,33 @@ Learn more about [Twitter login](https://developer.twitter.com/en/docs/twitter-f
}
```

### Apple `authData`

As of Parse Server 3.5.0 you can use [Sign In With Apple](https://developer.apple.com/sign-in-with-apple/get-started/).

```js
{
"apple": {
"id": "jwt token for user", // required, used for validation
"access_token": "an authorized access token for the user", // optional
}
}
```

#### Configuring parse-server for Sign In with Apple

```js
{
auth: {
apple: {
client_id: "", // optional (for extra validation), use the Service ID from Apple.
},
}
}
```

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

### Github `authData`

```js
Expand Down