1

所以我已经在我的 Django 项目上设置了 Django allauth 并连接到 Instagram,这样做时,我现在在我的管理网站上拥有我的帐户注册的社交帐户类别,到目前为止一切都很好

在下面的页面上,我可以看到一个名为额外数据的字段,我怎样才能将它放在普通的用户数据库中,这样我就可以使用它来获取我从额外数据中获得的关注者数量?我可以用我拥有的令牌请求关注者吗?

在此处输入图像描述

4

1 回答 1

3

You can simply access the SocialAccount model like any other django model:

from allauth.socialaccount.models import SocialAccount

def instagram(request):
    data = SocialAccount.objects.get(user=request.user).extra_data
    follows = data.get('counts')
    return render(request, 'Path.to.html', {"follows": follows})
于 2018-08-12T02:08:09.577 回答