-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathconf.py
More file actions
28 lines (27 loc) · 713 Bytes
/
conf.py
File metadata and controls
28 lines (27 loc) · 713 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
28
import os
class Config(object):
DEBUG = True
TESTING = False
LOG_LEVEL = os.environ.get('LOG_LEVEL', 'DEBUG')
FBAPI_APP_ID = os.environ.get('FACEBOOK_APP_ID')
FBAPI_APP_SECRET = os.environ.get('FACEBOOK_SECRET')
FBAPI_SCOPE = [
'user_checkins',
'user_photos',
'user_activities',
'user_videos',
'user_likes',
'user_status',
'user_events',
'friends_checkins',
'friends_activities',
'friends_photos',
'friends_status',
'friends_likes',
'read_stream',
'read_requests',
'read_insights',
'read_friendlists',
'read_mailbox',
'status_update',
]