我已经使用django-allauth在django应用程序中实现了google登录。以下是settings.py
中的社交帐户提供商设置SOCIALACCOUNT_PROVIDERS = {
'google': {
'SCOPE': [
'profile',
'email',
],
'AUTH_PARAMS': {
'access_type': 'online',
'hd': 'xxxxyyy.in',
}
}}
当我尝试使用gmail ID(例如abc@gmail.com)登录时,尽管存在“ hd”参数,但google也允许访问它。谁能让我知道我还应该添加更多参数,以便Google只允许访问“ hd”参数中存在的域吗?