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 ?
for https://api.facebook.com/method/fql.query?query=QUERY
Replace QUERY with FQL,
for example:https://api.facebook.com/method/fql.query?query=SELECT%20aid,%20owner,%20name,%20object_id%20FROM%20album%20WHERE%20aid=%2220531316728_324257%22