skip to Main Content

Facebook API query on /me with access token and fields only returns status=True. What am I doing wrong?

The following python code: # user profile information args = { 'access_token':access_token, 'fields':'id,name', } print 'ACCESSED', urllib.urlopen('https://graph.facebook.com/me', urllib.urlencode(args)).read() Prints the following: ACCESSED {"success":true} The token is valid, no error, the fields are valid. Why is it not returning the fields…

VIEW QUESTION
Back To Top
Search