0
votes
3answers
341 views

Convert a list of string to unicode characters in python

My python code using facebook API to request user's info. And the name can contain Unicode characters: # -*- coding: utf-8 -*- from facebook import Facebook def desktop_app(): # Get api_key and ...
0
votes
1answer
88 views

FQL query by server side

I do not understand how I can do: I have to do some queries on facebook by my server: I created a token with app_facebook_id and SECRET_KEY, my server starts to make these queries using FQL but I get ...
0
votes
1answer
101 views

what is the url to get the number of friends a user has by user ID by graph api or FQL

Hi this is my piece of code to get the number of friends a user has by python . It returns nothing. Can anyone tell me which access privilege should i grant or anything wrong what i have done so far? ...
1
vote
0answers
386 views

Python AppEngine FQL queries for a few thousand entites

I've got a bunch of queries like SELECT total_count from link_stat where url='http://sampleurl.com' I tried to use the FQL multiquery option, but the query length is very large and I get ...
0
votes
0answers
56 views

fql python pictures returns doesn't like me using my own variables

I want to get pictures that users are tagged in. The period of which the pictures were uploaded the users can specify, which are stored in variables above the FQL call. When I come to run the FQL ...
0
votes
0answers
270 views

Facebook Graph API advanced query with FQL

I'm making a query to Facebook Graph to get me the latest posts from a list of pages. I have around 300 pages, and I want to query them every minute for all items posted in the last minute. However, ...
0
votes
0answers
142 views

How to make a Facebook FQL Query in python using access_token

So the problem is: I need to make a FQL query in a python script that runs on my server. After the user logged in the webpage, with Facebook, I send his access_token to this script, then I run the ...