-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ini.example
More file actions
33 lines (29 loc) · 1.03 KB
/
config.ini.example
File metadata and controls
33 lines (29 loc) · 1.03 KB
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
; Main APP config file
; remove .example from file name
; and set database parameters
; MySQL config block
db_host = '';
db_username = '';
db_password = '';
db_name = '';
; VK.com config parameters
vk_app_id = '';
vk_api_secure_key = '';
vk_api_redirect_uri = '';
vk_api_url = 'http://oauth.vk.com/authorize';
vk_api_token_url = 'https://oauth.vk.com/access_token';
vk_api_user_info_url = 'https://api.vk.com/method/users.get';
; Facebook config parameters
facebook_app_id = '';
facebook_api_secure_key = '';
facebook_api_redirect_uri = '';
facebook_api_url = 'https://www.facebook.com/dialog/oauth';
facebook_api_token_url = 'https://graph.facebook.com/oauth/access_token';
facebook_api_user_info_url = 'https://graph.facebook.com/me';
; Google config parameters
google_app_id = '';
google_api_secure_key = '';
google_api_redirect_uri = '';
google_api_url = 'https://accounts.google.com/o/oauth2/auth';
google_api_token_url = 'https://accounts.google.com/o/oauth2/token';
google_api_user_info_url = 'https://www.googleapis.com/oauth2/v1/userinfo';