@@ -4,7 +4,6 @@ Parse Server supports 3rd party authentication with
4
4
5
5
* Apple
6
6
* Facebook
7
- * Facebook AccountKit
8
7
* Github
9
8
* Google
10
9
* Instagram
@@ -57,34 +56,6 @@ Note, most of them don't require a server configuration so you can use them dire
57
56
```
58
57
Learn more about [ Facebook login] ( https://developers.facebook.com/docs/authentication/ ) .
59
58
60
- ### Facebook AccountKit ` authData `
61
- ``` js
62
- {
63
- " facebookaccountkit" : {
64
- " id" : " user's Facebook Account Kit id number as a string" ,
65
- " access_token" : " an authorized Facebook Account Kit access token for the user" ,
66
- // optional, access token via authorization code does not seem to have this in response
67
- " last_refresh" : " time stamp at which token was last refreshed"
68
- }
69
- }
70
- ```
71
- The options passed to Parse server:
72
- ``` js
73
- {
74
- auth: {
75
- facebookaccountkit: {
76
- // your facebook app id
77
- appIds: [" id1" , " id2" ],
78
- // optional, if you have enabled the 'Require App Secret' setting in your app's dashboards
79
- appSecret: " App secret from Account Kit setting"
80
- }
81
- }
82
- }
83
- ```
84
- Learn more about [ Facebook Account Kit] ( https://developers.facebook.com/docs/accountkit ) .
85
-
86
- Two ways to [ retrieve access token] ( https://developers.facebook.com/docs/accountkit/accesstokens ) .
87
-
88
59
### Twitter ` authData `
89
60
90
61
``` js
@@ -192,7 +163,7 @@ Google oauth supports validation of id_token's and access_token's.
192
163
193
164
### Configuring Parse Server for LDAP
194
165
195
- The [ LDAP] ( https://en.wikipedia.org/wiki/Lightweight_Directory_Access_Protocol ) module can check if a
166
+ The [ LDAP] ( https://en.wikipedia.org/wiki/Lightweight_Directory_Access_Protocol ) module can check if a
196
167
user can authenticate (bind) with the given credentials. Optionally, it can also check if the user is in a certain group.
197
168
This check is done using a user specified query, called an [ LDAP Filter] ( https://ldap.com/ldap-filters/ ) .
198
169
The query should return all groups which the user is a member of. The ` cn ` attribute of the query results is compared to ` groupCn ` .
0 commit comments