This repository has been archived by the owner on May 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproviders.json
64 lines (64 loc) · 2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"local": {
"provider": "local",
"module": "passport-local",
"usernameField": "username",
"passwordField": "password",
"authPath": "/auth/local",
"successRedirect": "/auth/account",
"failureRedirect": "/local",
"failureFlash": true
},
"google-login": {
"provider": "google",
"module": "passport-google-oauth",
"strategy": "OAuth2Strategy",
"clientID": "1033079758761-990r0n9v80l6p57npcllhuvtq3fp5dch.apps.googleusercontent.com",
"callbackURL": "/auth/google/callback",
"authPath": "/auth/google",
"callbackPath": "/auth/google/callback",
"successRedirect": "/auth/account",
"scope": ["email", "profile"]
},
"google-link": {
"provider": "google",
"module": "passport-google-oauth",
"strategy": "OAuth2Strategy",
"clientID": "1033079758761-990r0n9v80l6p57npcllhuvtq3fp5dch.apps.googleusercontent.com",
"callbackURL": "/link/google/callback",
"authPath": "/link/google",
"callbackPath": "/link/google/callback",
"successRedirect": "/auth/account",
"failureRedirect": "/login",
"scope": ["email", "profile"],
"link": true,
"failureFlash": true
},
"facebook-login": {
"provider": "facebook",
"module": "passport-facebook",
"clientID": "2048662355414501",
"clientSecret": "8b711ae6f111a018f2ba2e186d5a1dd1",
"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": "2048662355414501",
"clientSecret": "8b711ae6f111a018f2ba2e186d5a1dd1",
"callbackURL": "/link/facebook/callback",
"authPath": "/link/facebook",
"callbackPath": "/link/facebook/callback",
"successRedirect": "/auth/account",
"failureRedirect": "/login",
"scope": ["email", "user_likes"],
"link": true,
"failureFlash": true
}
}