skip to Main Content

Facebook api – "message": "Unsupported post request. Object with ID does not exist, cannot be loaded due to missing permissions

I have two apps on facebook. In one, I can make API calls. In the other, I can not. I checked the configuration and the settings are the same. Can you help me? Example: https://graph.facebook.com/860599774051206/?access_token=APP_ID|APP_SECRET https://graph.facebook.com/860599774051206/notifications?template=@[860599774051206]test&access_token=APP_ID|APP_SECRET&method=post the error is: {…

VIEW QUESTION

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