-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth.prod.json
93 lines (80 loc) · 2.38 KB
/
auth.prod.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"local": {
"saltLength": 16,
"algorythm": "sha256"
},
"facebook": {
"clientID": "XXX",
"clientSecret": "XXX",
"callbackURL": "https://dev.localhost.com/api/session/auth/facebook/callback",
"profileFields": ["id", "photos", "email"],
"scope": ["email"]
},
"twitter": {
"consumerKey": "XXX",
"consumerSecret": "XXX",
"callbackURL": "https://dev.localhost.com/api/session/auth/twitter/callback",
"userProfileURL": "https://api.twitter.com/1.1/account/verify_credentials.json?include_email=true"
},
"instagram": {
"clientID": "XXX",
"clientSecret": "XXX",
"callbackURL": "https://dev.localhost.com/api/session/auth/instagram/callback"
},
"github": {
"clientID": "XXX",
"clientSecret": "XXX",
"callbackURL": "https://dev.localhost.com/api/session/auth/github/callback",
"scope": "user:email"
},
"linkedin": {
"consumerKey": "XXX",
"consumerSecret": "XXX",
"callbackURL": "https://dev.localhost.com/api/session/auth/linkedin/callback",
"scope": ["r_emailaddress", "r_basicprofile"],
"profileFields": ["email-address", "picture-url"]
},
"flickr": {
"consumerKey": "XXX",
"consumerSecret": "XXX",
"callbackURL": "https://dev.localhost.com/api/session/auth/flickr/callback"
},
"pinterest": {
"clientID": "XXX",
"clientSecret": "XXX",
"scope": ["read_public"],
"callbackURL": "https://dev.localhost.com/api/session/auth/pinterest/callback",
"state": true
},
"reddit": {
"clientID": "XXX",
"clientSecret": "XXX",
"callbackURL": "https://dev.localhost.com/api/session/auth/reddit/callback"
},
"stackexchange": {
"clientID": "XXX",
"clientSecret": "XXX",
"stackAppsKey": "XXX",
"callbackURL": "https://stackexchange.com/oauth/login_success",
"site": "stackoverflow"
},
"google": {
"clientID": "XXX",
"clientSecret": "XXX",
"callbackURL": "https://dev.localhost.com/api/session/auth/google/callback",
"scope": "email"
},
"vkontakte": {
"clientID": "XXX",
"clientSecret": "XXX",
"callbackURL": "https://dev.localhost.com/api/session/auth/vkontakte/callback",
"profileFields": ["email"],
"scope": "email"
},
"dropbox": {
"apiVersion": "2",
"clientID": "XXX",
"clientSecret": "XXX",
"callbackURL": "https://dev.localhost.com/api/session/auth/dropbox/callback"
}
}