1
沒有指定在哪裏指定我們自定義添加的支持的客戶端ID和CLIENT SECRET。 http://python-social-auth.readthedocs.io/en/latest/backends/implementation.html#oauth在Python中添加新的後端社交身份驗證
沒有指定在哪裏指定我們自定義添加的支持的客戶端ID和CLIENT SECRET。 http://python-social-auth.readthedocs.io/en/latest/backends/implementation.html#oauth在Python中添加新的後端社交身份驗證
我已經實現了這種方式:
from django.conf import settings
class CustomOAuth2(BaseOAuth2):
name = 'custom'
def get_key_and_secret(self):
return settings.CUSTOM_OAUTH_CLIENT_ID, settings.CUSTOM_OAUTH_CLIENT_SECRET