Facebook不会返回电子邮件Python社交身份验证

时间:2015-08-15 11:37:30

标签: python django facebook django-socialauth python-social-auth

这是settings.py中的管道:

SOCIAL_AUTH_PIPELINE = (
    'social.pipeline.social_auth.social_details',
    'social.pipeline.social_auth.social_uid',
    'social.pipeline.social_auth.auth_allowed',
    'social.pipeline.social_auth.social_user',
    'social.pipeline.user.get_username',
    'accounts.pipeline.create_user',
    'accounts.pipeline.update_user_social_data',
    # 'social.pipeline.user.create_user',
    'social.pipeline.social_auth.associate_user',
    'social.pipeline.social_auth.load_extra_data',
    'social.pipeline.user.user_details',
)

以及这一行:

SOCIAL_AUTH_FACEBOOK_SCOPE = ['email']

我也尝试了这个:

FACEBOOK_EXTENDED_PERMISSIONS = ['email']

和我的pipeline.py

def create_user(strategy, details, user=None, *args, **kwargs):
    if user:
        return {
            'is_new': False
        }

    fields = dict((name, kwargs.get(name) or details.get(name))
                  for name in strategy.setting('USER_FIELDS',
                                               USER_FIELDS))

    if not fields:
        return

    if strategy.session_get('signup') == 'UserType1':
        user1 = UserType1.objects.create_user(username=fields.get('username'))
        user1.user_type = User.USERTYPE1
        user1.save()

        return {
            'is_new': True,
            'user': user1
        }

    elif strategy.session_get('signup') == 'UserType2':
        user2 = UserType2.objects.create_user(username=fields.get('username'))
        user2.user_type = User.USERTYPE2
        user2.save()

        return {
            'is_new': True,
            'user': user2
        }


def update_user_social_data(strategy, *args, **kwargs):
    if not kwargs['is_new']:
        return

    full_name = ''
    backend = kwargs['backend']

    user = kwargs['user']

    full_name = kwargs['response'].get('name')
    user.full_name = full_name

    email = kwargs['response'].get('email')
    user.email = email

    user.save()

但是,kwargs['response'].get('name')正确返回用户的全名,但kwargs['response'].get('email')始终为无。当我print kwargs['response']时,它只显示uid和用户名,因此Facebook不会返回用户的电子邮件。怎么克服这个?谢谢!

2 个答案:

答案 0 :(得分:10)

我认为这可能是由于Facebook的Graph API v2.4的变化。

在以前的API版本中,添加

SOCIAL_AUTH_FACEBOOK_SCOPE = ['email']

允许您获取Facebook用户的电子邮件。现在,这还不够,kwargs['response'].get('email')是空白的。

但是,如python social auth issue 675中所述,还添加了此

SOCIAL_AUTH_FACEBOOK_PROFILE_EXTRA_PARAMS = {
    'fields': 'id,name,email', 
}

到您的设置似乎可以解决此问题,您可以再次收到用户的电子邮件。

答案 1 :(得分:-1)

Facebook不会将电子邮件ID发送到localhost:8000。在此处查看文档:{​​{3}}