📜  django allauth - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:48.342000             🧑  作者: Mango

代码示例2
SOCIALACCOUNT_PROVIDERS = {
    'google': {
        # For each OAuth based provider, either add a ``SocialApp``
        # (``socialaccount`` app) containing the required client
        # credentials, or list them here:
        'APP': {
            'client_id': '123',
            'secret': '456',
            'key': ''
        }
    }
}