from social_auth.signals import socialauth_registered
プロジェクトで新しい登録ユーザーに使用しています。Facebookで自分のプロジェクトにサインアップしようとすると、気づきました。私のプロジェクトは、私の Facebook のプロフィール写真を取得しませんでした。代わりに、私のgravatar.com
アカウントのプロフィール写真を取得します。
これは私のコードです:
from django.db import models
from django.utils.translation import ugettext_lazy as _
from django.contrib.auth.models import User
from userena.models import *
from social_auth.signals import pre_update
from social_auth.backends.facebook import FacebookBackend
from social_auth.backends import google
from social_auth.signals import socialauth_registered
import datetime
def new_users_handler(sender, user, response, details, **kwargs):
user.is_new = True
print "hello"
if user.is_new:
print "world"
if "id" in response:
print "police"
from urllib2 import urlopen, HTTPError
from django.template.defaultfilters import slugify
from django.core.files.base import ContentFile
try:
url = None
if sender == FacebookBackend:
url = "http://graph.facebook.com/%s/picture?type=large" \
% response["id"]
elif sender == google.GoogleOAuth2Backend and "picture" in response:
url = response["picture"]
print url
if url:
avatar = urlopen(url)
#profile = UserProfile(user=user)
print "again"
print user
fileName = "media/mugshots/"+ str(user) + ".jpg"
print "okss"
print fileName
try:
profile = Profile.objects.get(user=user)
except:
profile = Profile.objects.create(user=user)
localFile = open(fileName, 'w')
localFile.write(avatar.read())
localFile.close()
profile.mugshot = fileName
print "save=ing profile"
#profile.mugshot.save(slugify(user.username + " social") + '.jpg',
# ContentFile(avatar.read()))
profile.save()
except HTTPError:
pass
return False
socialauth_registered.connect(new_users_handler, sender=None)
しかし、私のコードは、Facebook のプロフィール写真を「media/mudshots/ dir」に保存する際に機能しませんでした。
私の質問は、Facebook アカウントのプロフィール写真を取得してmedia/mudshots/
、django プロジェクトのディレクトリに保存するにはどうすればよいですか?
誰かが私のケースについて私を助けることができますか?
前もって感謝します ..