Assuming that the user is already authenticated using the javascript SDK, how would you execute FQL queries in python ->
query = 'SELECT page_id FROM page_admin WHERE uid = ' + user_id
I've read the documentation and it seems that you got to hit this url ->
https://api.facebook.com/method/fql.query?query=QUERY
How do you do this? Also do you need to pass the access token in the url, if yes then how ?