python-social-auth - 更新电子邮件地址

时间:2014-10-22 07:12:59

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

我正在使用python-social-auth,我的管道如下:

'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',
'social.pipeline.social_auth.associate_by_email',
'social.pipeline.user.create_user',
'social.pipeline.social_auth.associate_user',
'social.pipeline.social_auth.load_extra_data',
'social.pipeline.user.user_details',

我想在get_username之后添加一个表单,我想询问用户他的电子邮件地址。我没有从后端提供商那里得到一个。我想将该电子邮件地址与该电子邮件地址关联起来。

这怎么可能?该功能应该如何?

2 个答案:

答案 0 :(得分:1)

功能:

from django.shortcuts import render

from social.pipeline.partial import partial


@partial
def require_email(strategy, backend, details, user=None, is_new=False, *args, **kwargs):
    if is_new and not details.get('email'):
        email = strategy.request_data().get('email')
        if email:
            details['email'] = email
        else:
            return render(strategy.request, 'require_email.html', backend=backend.name)

模板:

<form method="post" action="/complete/{{ backend }}/">{% csrf_token %}
    <label for="email">Email:</label>        
    <input id="email" type="email" placeholder="Your email address">
    <button>Submit</button>
</form>

这应该可以解决问题。

答案 1 :(得分:0)

我认为您要查找的内容在电子邮件验证中描述如下: http://psa.matiasaguirre.net/docs/pipeline.html#extending-the-pipeline