这个问题是关于使用https://github.com/philipgarnero/django-rest-framework-social-oauth2库自动保存Facebook配置文件图片。
编辑:有两种方法可以解决此问题:将图像的URL保存在CharField()
中或使用ImageField()
保存图像本身。两种解决方案都会做。
上面的库允许我使用承载令牌创建和对用户进行身份验证。我拥有创建的配置文件模型:
class UserProfile(models.Model):
user = models.OneToOneField(User, on_delete=models.CASCADE, related_name='userprofile')
photo = models.FileField(blank=True) # OR
######################################
url = 'facebook.com{user id}/picture/'
photo = models.CharField(default=url)
@receiver(post_save, sender=User)
def create_user_profile(sender, instance, created, **kwargs):
if created:
UserProfile.objects.create(user=instance)
@receiver(post_save, sender=User)
def save_user_profile(sender, instance, **kwargs):
instance.userprofile.save()
自动为每个用户创建用户配置文件。现在,我想添加以下代码以从Facebook中保存照片。Facebook API需要user id
获取此图片。
photo = 'https://facebook/{user-id}/picture/'
UserProfile.objects.create(user=instance, photo=photo)
以上是不起作用的,因为
1(我不知道从哪里获得user id
。
2(不能像这样存储图像,我需要将其转换为字节或其他方法。
有一个非常简单的解决方案。使用Python-Social-auth Pipelines。
此事物的工作方式就像middleware
一样,您可以在"设置"页面中添加到SOCIAL_AUTH_PIPELINE
节一个函数,该函数每次使用social_django
进行身份验证时运行的函数。
一个例子:
在您的设置页面中,添加以下内容:
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',
'social.pipeline.user.create_user',
'social.pipeline.social_auth.associate_user',
'social.pipeline.social_auth.load_extra_data',
'social.pipeline.user.user_details',
'home.pipeline.save_profile',
)
查看home.pipeline.save_profile
,这是home.pipeline
文件中的新管道。(将其更改为您自己的用户模块文件夹(
在其中(home.pipeline
(添加以下内容:
from .models import UserProfile
def save_profile(backend, user, response, *args, **kwargs):
if backend.name == "facebook":
UserProfile.objects.create(
user=user,
photo_url=response['user']['picture']
)
这是一个例子。如果用户已经登录,则需要将其更改以获取/更新。另外,尝试使用response
参数播放,您可以在那里使用不同的数据。
最后一件事,请确保将picture
属性添加到您的设置中:
SOCIAL_AUTH_FACEBOOK_PROFILE_EXTRA_PARAMS = {
'fields': 'id, name, email, picture'
}
http://python-social-auth.readthedocs.io/en/latest/backends/facebook.html
https://godjango.com/122-custom-python-social-auth-pipeline/
https://github.com/python-social-auth/social-app-django
上述答案可能无法使用(对我不起作用(,因为如果没有访问权限,Facebook配置文件URL不再起作用。以下答案对我有用。
def save_profile(backend, user, response, is_new=False, *args, **kwargs):
if is_new and backend.name == "facebook":
# The main part is how to get the profile picture URL and then do what you need to do
Profile.objects.filter(owner=user).update(
imageUrl='https://graph.facebook.com/{0}/picture/?type=large&access_token={1}'.format(response['id'],response['access_token']))
在设置中添加到管道。py,
SOCIAL_AUTH_PIPELINE+ = ('<full_path>.save_profile')