13

ユーザーのFacebookプロフィールを利用django-rest-authdjango-allauthたユーザー登録・ログインについて

これで、Facebook からいくつかの標準情報を取得できます (すべての認証のデフォルト)。

アバター画像の一覧も取得できますか? どうすればallAuthで作ることができますか?

4

3 に答える 3

24

django テンプレートでアバター画像を取得したい場合:

<img src="{{ user.socialaccount_set.all.0.get_avatar_url }}" />

それはあなたがやろうとしていたことですか?

于 2015-04-11T01:39:16.740 に答える
11

私がそれをどのように行ったかを簡単に説明しましょう (all_auth と rest_auth を使用)。

基本的に、「allauth => socialaccount」はuser_signed_up およびuser_logged_inシグナルを提供します。したがって、それらをキャッチして sociallogin オブジェクトの追加データを取得し、avatar_url を設定する必要があります。

ステップ-1: UserProfile モデルを作成します: (avatar_url を保存するため)

#models.py
try:
    from django.utils.encoding import force_text
except ImportError:
    from django.utils.encoding import force_unicode as force_text

class UserProfile(models.Model):
    user = models.OneToOneField(User, primary_key=True, verbose_name='user', related_name='profile')
    avatar_url = models.CharField(max_length=256, blank=True, null=True)

    def __str__(self):
        return force_text(self.user.email)

    class Meta():
        db_table = 'user_profile'

ステップ 2: 「user_signed_up」シグナルをキャッチし、「avatar_url」に入力する

# signals.py

from allauth.account.signals import user_signed_up, user_logged_in

@receiver(user_signed_up)
def social_login_fname_lname_profilepic(sociallogin, user):
    preferred_avatar_size_pixels=256

    picture_url = "http://www.gravatar.com/avatar/{0}?s={1}".format(
        hashlib.md5(user.email.encode('UTF-8')).hexdigest(),
        preferred_avatar_size_pixels
    )

    if sociallogin:
        # Extract first / last names from social nets and store on User record
        if sociallogin.account.provider == 'twitter':
            name = sociallogin.account.extra_data['name']
            user.first_name = name.split()[0]
            user.last_name = name.split()[1]

        if sociallogin.account.provider == 'facebook':
            f_name = sociallogin.account.extra_data['first_name']
            l_name = sociallogin.account.extra_data['last_name']
            if f_name:
                user.first_name = f_name
            if l_name:
                user.last_name = l_name

            #verified = sociallogin.account.extra_data['verified']
            picture_url = "http://graph.facebook.com/{0}/picture?width={1}&height={1}".format(
                sociallogin.account.uid, preferred_avatar_size_pixels)

        if sociallogin.account.provider == 'google':
            f_name = sociallogin.account.extra_data['given_name']
            l_name = sociallogin.account.extra_data['family_name']
            if f_name:
                user.first_name = f_name
            if l_name:
                user.last_name = l_name
            #verified = sociallogin.account.extra_data['verified_email']
            picture_url = sociallogin.account.extra_data['picture']

    user.save()
    profile = UserProfile(user=user, avatar_url=picture_url)
    profile.save()        

これがあなたを助けることを願っています。

于 2016-11-09T01:10:00.183 に答える