在没有社交后端的情况下,在Python-Social-Auth上注册新用户的最佳方式是什么?

时间:2014-04-11 15:23:14

标签: python django python-social-auth

我知道这听起来有点混乱,但是有些网站允许多种方式进行注册,比如使用社交网络(FB或TW,当然我正在使用python-social-auth为这个porpouse)或使用用于创建新用户的表单...

有没有办法使用自定义注册表单(即使用一组常用字段,如电子邮件,密码,名字等)将新用户注册到我的网站,并将其与python-social-auth集成?< / p>

感谢。

1 个答案:

答案 0 :(得分:0)

您可以随时使用此

注册新用户
from django.contrib.auth.models import User

user = User.objects.create_user(username='new_user',
                                email='test@dot.com',
                                password='test')

然后添加他的社交帐户。