Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Django views are MVC views; they control rendering (typically through templates), and the data displayed.

learn more… | top users | synonyms

0
votes
1answer
118 views

Django with “email as username” has conflict with facebook login?! Or how to have both

For the first phase, I used Email as username django-email-as-username. For the second phase, I would like to activate facebook login as well. But almost all of the 3rd party apps that I've seen are ...
0
votes
1answer
400 views

How to read JSON data return by the Facebook access_token

I'm trying to get the facebook username of a logged in user in my site. I have this code in my view (on Django) : code = request.GET.get('code') url = ...
1
vote
2answers
1k views

403 on ajax request to own domain

I'm trying to use an ajax request to call a function in a different view, but I'm getting a 403 error. excerpt from my template: FB.ui({ method: 'apprequests', title: 'Invite your friends to ...