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.

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?

friend_count = 0
q = urllib.urlencode({'SELECT friend_count FROM user WHERE uid': 784877761})

url = 'https://api.facebook.com/method/fql.query?query=' + q

request = urllib2.Request(url)
data = urllib2.urlopen(request)
doc = parse(data)


friend_count_node = doc.getElementsByTagName("friend_count")
test = friend_count_node[0].firstChild.nodeValue
logging.info(test)
share|improve this question

1 Answer

Try replacing your code with this:

q = urllib.urlencode({'SELECT friend_count FROM user WHERE uid = 784877761'})

url = 'https://graph.facebook.com/fql?q=' + q

You should not need an access token to get the friend_count.

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.