Question

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 :)

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top