-
Notifications
You must be signed in to change notification settings - Fork 6
/
example.json
38 lines (38 loc) · 1.19 KB
/
example.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
{
"ENV": "PROD",
"API": "https://website.api.url/api/v1.0",
"TITLE_MAIN": "Title",
"TITLE_NAV": "Navigation title",
"DEFAULT_LANG": "en",
"AGREEMENTS": "/assets/agreement",
"PROVIDERS": {
"GOOGLE": {
"authorizationUrlBase": "https://accounts.google.com/o/oauth2/auth",
"getParams": {
"response_type": "code",
"client_id": "982984793699-rrf65igolgdvtmdq5oue0opi3jvq4vl8.apps.googleusercontent.com",
"scope": "https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email",
"redirect_uri": "http://localhost:5555/login/google"
}
},
"FACEBOOK": {
"authorizationUrlBase": "https://www.facebook.com/v6.0/dialog/oauth",
"getParams": {
"client_id": "943026769900796",
"redirect_uri": "http://localhost:5555/login/facebook",
"state": "true",
"scope": "email,user_gender"
}
},
"VK": {
"authorizationUrlBase": "https://oauth.vk.com/authorize",
"getParams": {
"client_id": "7437410",
"scope": "email",
"redirect_uri": "http://localhost:5555/login/vk",
"v": "5.103",
"response_type": "code"
}
}
}
}