-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth.js
More file actions
27 lines (26 loc) · 704 Bytes
/
auth.js
File metadata and controls
27 lines (26 loc) · 704 Bytes
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
/**
* Created by ajijohn on 10/31/16.
*/
var ids= {
linkedin : {
"api_key" : "api_key",
"api_secret" : "api_secret",
"callback_url" : "http://localhost:3000/auth/linkedin/callback",
"realm":"http://localhost:3000"
}
,
twitter : {
"api_key" : "api_key",
"api_secret" : "api_secret",
"callback_url" : "http://localhost:3000/auth/twitter/callback",
"realm":"http://localhost:3000"
}
,
google : {
"clientID" : "client_ID",
"clientSecret" : "client_secret",
"callbackURL" : "http://localhost:3000/auth/google/callback",
"realm" : "http://localhost:3000"
}
};
module.exports=ids;