Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

I'm doing a facebook integration with django-facebook so I need to retrieve data from fql queries. Here is the code:

a = request.user.get_profile().access_token
aquery = "SELECT uid, rsvp_status, start_time FROM event_member WHERE eid = 229224023873578 AND rsvp_status = 'attending'"
query = "https://api.facebook.com/method/fql.query?query=%s&access_token=%s" % (aquery, a)
return HttpResponseRedirect(query)

As it is now the code gets the access_token from the models made from django-facebook and gets all attending members for the specific event. Finally it redirects to the fql results page. I want to retrieve these results and process them - How can I do that? I tried using urllib2 and putting query like this:

response = urllib2.urlopen(query)
html = response.read()
return HttpResponse(html)

I get an error - HTTP Error 400: Bad Request. Thanks for your help in advance!

share|improve this question

1 Answer

up vote 0 down vote accepted

Ok I found the solution - Here it is:

query = "YOUR FQL QUERY --- SEE FB API DOCUMENTATION ---" 
b = graph.fql(query)

Django-facebook has graph - import it and use it (for more info on this graph see django-facebook git code)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.