我第一次尝试使用 social_auth (omab),我发现没有工作示例如何存储基本的 facebook 用户数据。gender
身份验证有效,并且用户创建没有问题,正如 social_auth 文档中所解释的那样,但我还需要存储locale
。它们都属于基本的 facebook 用户数据,因此它们一直在 facebook 响应中。
我正在使用 Django 1.4、Python2.7 和最新的 social_auth。所以我尝试SOCIAL_AUTH_USER_MODEL = 'myapp.UserProfile'
在 settings.py 文件中使用,而 model.py 是:
#!/usr/bin/python
#-*- coding: UTF-8 -*-
from django.db import models
from django.contrib.auth.models import User
from django.db.models import signals
import datetime
from datetime import timedelta
from django.db.models.signals import post_save
from social_auth.signals import pre_update
from social_auth.backends.facebook import FacebookBackend
class CustomUserManager(models.Manager):
def create_user(self, username, email):
return self.model._default_manager.create(username=username)
class UserProfile(models.Model):
gender = models.CharField(max_length=150, blank=True)
locale = models.CharField(max_length=150, blank=True)
#social_auth requirements
username = models.CharField(max_length=150)
last_login = models.DateTimeField(blank=True)
is_active = models.BooleanField()
objects = CustomUserManager()
class Meta:
verbose_name_plural = 'Profiles'
def __unicode__(self):
return self.username
def get_absolute_url(self):
return '/profiles/%s/' % self.id
def facebook_extra_values(sender, user,response, details, **kwargs):
profile = user.get_profile()
current_user = user
profile, new = UserProfile.objects.get_or_create(user=current_user)
profile.gender = response.get('gender')
profile.locale = response.get('locale')
profile.save()
return True
pre_update.connect(facebook_extra_values, sender=FacebookBackend, weak = False, dispatch_uid = 'facebook_extra_values_user')
在 settings.py 我定义管道
SOCIAL_AUTH_PIPELINE = (
'social_auth.backends.pipeline.social.social_auth_user',
#'social_auth.backends.pipeline.associate.associate_by_email',
'social_auth.backends.pipeline.user.create_user',
'social_auth.backends.pipeline.social.associate_user',
'social_auth.backends.pipeline.social.load_extra_data',
'social_auth.backends.pipeline.user.update_user_details',
'social_auth.backends.pipeline.misc.save_status_to_session',
)
但上面我得到错误AssertionError: ForeignKey(None) is invalid. First parameter to ForeignKey must be either a model, a model name, or the string 'self'
我也尝试AUTH_PROFILE_MODULE = 'myapp.UserProfile'
像以前一样使用扩展 user.model,它运行良好,但不明白如何在创建 UserProfile 时填充所需的数据。有没有人可以为这个问题放置工作代码?
谢谢