Reputation: 792
After the facebook have updated the Graph API and it's request I am facing this error
Unsupported get request. Object with ID '203618703567212' does not exist, cannot be loaded due to missing permissions, or does not support this operation. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api
I have the access token with all the valid permissions and access token is valid too,
URL is https://graph.facebook.com/v2.9/203618703567212/?fields=cover&access_token=Access Token Here It was working previously before the Update but now it is just crashing. Any help on this will be appreciated , I have read all blogs and everything where i could ask for solution but found nothing.
Upvotes: 31
Views: 82650
Reputation: 23
The Id to pass into the function has to be preceded by "act_".
So replace :
account = AdAccount('203618703567212')
with :
account = AdAccount('act_203618703567212')
Upvotes: 2
Reputation: 179
I encountered this problem and my solution was that I didn't have my Pixel set up for Conversions API in the FB UI. It was configured for Browser Pixel only. Make sure your Pixel has the correct setup!
Also the FB UI graph of events has a substantial delay, but when clicking "View details" inside the events list, that data is much more up-to-date.
Upvotes: 0
Reputation: 377
I have face same problem. But i add the more permissions like user_videos
and user_posts
. Then its work.
Upvotes: 0
Reputation: 3735
This might be a solution for you, Just verify your AppID
In my case , Again i follow this link https://developers.facebook.com/docs/facebook-login/android?sdk=maven and found i was using wrong AppId and above link give me correct AppId by selecting my App form the dropdown.
I just changed it and it’s working. Thank you
Upvotes: 6
Reputation: 164
Due to the recent changes as Facebook, you are now required to request extra permissions to access user events, and in order to have access to these permissions approved you'll need to submit your app for review.
Facebook documentation here: https://developers.facebook.com/docs/facebook-login/permissions/v3.0
A good rundown of the (new) process here: How do I test a Facebook app since the recent introduction of login review?
Upvotes: 14