mirror of
https://github.com/Rushilwiz/pfp-frame.git
synced 2025-04-07 21:50:18 -04:00
27 lines
634 B
Plaintext
27 lines
634 B
Plaintext
SECRET_KEY="supersecret"
|
|
GRAPH_ACCESS_TOKEN=""
|
|
|
|
DEBUG=False
|
|
|
|
SOCIALACCOUNT_PROVIDERS = {
|
|
'facebook': {
|
|
'METHOD': 'oauth2',
|
|
'SCOPE': ['public_profile'],
|
|
'AUTH_PARAMS': {'auth_type': 'reauthenticate'},
|
|
'INIT_PARAMS': {'cookie': True},
|
|
'FIELDS': [
|
|
'id',
|
|
'first_name',
|
|
'last_name',
|
|
'middle_name',
|
|
'name',
|
|
'name_format',
|
|
'picture',
|
|
'short_name'
|
|
],
|
|
'EXCHANGE_TOKEN': True,
|
|
'LOCALE_FUNC': 'path.to.callable',
|
|
'VERIFIED_EMAIL': False,
|
|
'VERSION': 'v12.0',
|
|
}
|
|
} |