Open masterchiefag opened 7 years ago
That analysis looks correct to me. I've just pushed a change on master.
Django and Facebook are both rapidly changing at the moment. Meanwhile, I'm caught up in a startup and don't have much spare time. The library needs a good round of testing against the latest python, django and facebook graph API. Contributions are strongly appreciated. Seriously, give github a try, fork and get started :)
This commit in PR #587 has broken the login flow.
The problematic change is:
(Earlier)
(Now)
In django_facebook/connect.py line 69:
email = facebook_data.get('email', False)
email comes out as False here and as a result the user lands to error page saying email field is required. Verified it by reverting this change.