Skip to content

Commit 501344c

Browse files
authored
Remove fb account kit from docs (parse-community#777)
1 parent 83a0395 commit 501344c

File tree

1 file changed

+1
-30
lines changed

1 file changed

+1
-30
lines changed

_includes/parse-server/third-party-auth.md

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ Parse Server supports 3rd party authentication with
44

55
* Apple
66
* Facebook
7-
* Facebook AccountKit
87
* Github
98
* Google
109
* Instagram
@@ -57,34 +56,6 @@ Note, most of them don't require a server configuration so you can use them dire
5756
```
5857
Learn more about [Facebook login](https://developers.facebook.com/docs/authentication/).
5958

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-
8859
### Twitter `authData`
8960

9061
```js
@@ -192,7 +163,7 @@ Google oauth supports validation of id_token's and access_token's.
192163

193164
### Configuring Parse Server for LDAP
194165

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
196167
user can authenticate (bind) with the given credentials. Optionally, it can also check if the user is in a certain group.
197168
This check is done using a user specified query, called an [LDAP Filter](https://ldap.com/ldap-filters/).
198169
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

Comments
 (0)