使用 Django 的 Social_auth 访问 Extra-Date
我在 django 应用程序中使用 Social_auth 来使用 facebook connect。我已按照文档(https://github.com/omab/django-social-auth)中给出的步骤进行操作。但我在访问额外信息(例如“user_about_me”、“profile_pic”等)方面遇到了困难。我能够在我的数据库列中看到访问令牌,但我在使用它方面确实很困难。
有人可以帮助我吗?
提前致谢 :)
I am using social_auth in my django application to use facebook connect. I have followed steps which are given in the documentation (https://github.com/omab/django-social-auth). But I am struggling in accessing extra info such as 'user_about_me','profile_pic' etc. I am able to see the access token in my db column but I am really struggling in making use of it.
Can someone help me.
Thanks in advance :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须为您的用户创建一个配置文件模型,以便存储额外的数据(如果您需要的话)。有了令牌,您应该能够使用 Graph Api https://developers。 facebook.com/docs/reference/api/user/
django-social-auth 就是这样..auth,而不是 Facebook 应用程序。
You will have to create a Profile model for your user in order to store additional data if thats what you need. With the token you should be able to make use of the Graph Api https://developers.facebook.com/docs/reference/api/user/
django-social-auth is just that.. auth, not a facebook app.