Jorge
Jorge

Reputation: 5676

facebook ads_management always return error

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

Answers (1)

Jim Rubenstein
Jim Rubenstein

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

Related Questions