I know this is a frequent issue, so pardon me for asking it again (it's really not a lack of research), I just can't seem to find a way to make Facebook Profile Picture load using Allauth.
I have used http://www.sarahhagstrom.com/2013/09/the-missing-django-allauth-tutorial/ for some tips, they all worked fine, but for Facebook Profile Picture seems to be missing something, the code on models.py responsible to pass the URL for Facebook Profile Picture can't get Facebook User Id
On the code below...
http://graph.facebook.com/{}/picture?width=40&height=40
... I've tried to use fb_uid and user_id but still doesn't load.
The profile URL is being called on the template as:
{% if request.user.is_authenticated %}
<img src="{{ request.user.profile.profile_image_url }}"/>
{% endif %}
Suggested here How can I get the user's facebook id with django-allauth? by Pennersr also doesn't give me access to users ID.
Thank you