Reputation: 5676
I always get this thing when I do test in facebook API graph explorer
{
"error": {
"message": "(#294) ",
"type": "OAuthException",
"code": 294
}
}
What I did is GET https://graph.facebook.com/act_MY_ACC_ID , I already set permission for ads_management. This is also happen when I do test on my test code.
Upvotes: 0
Views: 1239
Reputation: 6920
Your app has to be whitelisted for ads api access.
If your app is whitelisted, you need to use a valid user access token to access the ads api endpoints. That user has to have given your app the ads_management permission and must also have access to the ads account you're trying to access.
Upvotes: 1