I have been setting up the Python Social Auth with Facebook and Django and I am trying to obtain the link, which I believe is the link to the user's profile with the application.
I have the setting:
FACEBOOK_AUTH_EXTRA_ARGUMENTS = {'link'}
in my settings.py
which I believe should obtain the link from the user when they login on top of all the default things.
Then when I want to try and put the link onto a template I do this:
<p>Test: {{ wishlist.user.link }}</p>
The {{wishlist.user.link}}
part returns nothing. If I try to print the user.link
in my views it says link doesn't exist. What am I doing wrong here?