-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathproviders.json
45 lines (45 loc) · 1.25 KB
/
providers.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"local": {
"provider": "local",
"module": "passport-local",
"usernameField": "username",
"passwordField": "password",
"authPath": "/auth/local",
"successRedirect": "/auth/account",
"failureRedirect": "/local",
"failureFlash": true
},
"facebook-login": {
"provider": "facebook",
"module": "passport-facebook",
"profileFields": [
"locale",
"name",
"timezone",
"email"
],
"clientID": "291799974652971",
"clientSecret": "7473cfc3bc4cb7dcafe8b6c409e02770",
"callbackURL": "/auth/facebook/callback",
"authPath": "/auth/facebook",
"callbackPath": "/auth/facebook/callback",
"successRedirect": "/auth/account",
"failureRedirect": "/login",
"scope": ["email"],
"failureFlash": true
},
"facebook-link": {
"provider": "facebook",
"module": "passport-facebook",
"clientID": "291799974652971",
"clientSecret": "7473cfc3bc4cb7dcafe8b6c409e02770",
"callbackURL": "/link/facebook/callback",
"authPath": "/link/facebook",
"callbackPath": "/link/facebook/callback",
"successRedirect": "/auth/account",
"failureRedirect": "/login",
"scope": ["email", "user_likes"],
"link": true,
"failureFlash": true
}
}