File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Parse Server supports 3rd party authentication with
4
4
5
+ * Apple
5
6
* Facebook
6
7
* Facebook AccountKit
7
8
* Github
@@ -119,6 +120,33 @@ Learn more about [Twitter login](https://developer.twitter.com/en/docs/twitter-f
119
120
}
120
121
```
121
122
123
+ ### Apple ` authData `
124
+
125
+ As of Parse Server 3.5.0 you can use [ Sign In With Apple] ( https://developer.apple.com/sign-in-with-apple/get-started/ ) .
126
+
127
+ ``` js
128
+ {
129
+ " apple" : {
130
+ " id" : " jwt token for user" , // required, used for validation
131
+ " access_token" : " an authorized access token for the user" , // optional
132
+ }
133
+ }
134
+ ```
135
+
136
+ #### Configuring parse-server for Sign In with Apple
137
+
138
+ ``` js
139
+ {
140
+ auth: {
141
+ apple: {
142
+ client_id: " " , // optional (for extra validation), use the Service ID from Apple.
143
+ },
144
+ }
145
+ }
146
+ ```
147
+
148
+ Learn more about [ Sign In With Apple] ( https://developer.okta.com/blog/2019/06/04/what-the-heck-is-sign-in-with-apple ) .
149
+
122
150
### Github ` authData `
123
151
124
152
``` js
You can’t perform that action at this time.
0 commit comments