3

I have a developer account and have created an application in development mode, just for testing purposes. I have also created a business manager at business.facebook.com, and added my test app to it. I have an ad account as well, which is added into the business manager. I also added the ad account ID to my application under the Advanced --> Advertising Accounts --> Authorized accounts.

However, when I use the Facebook Graph API Explorer, and set it to use the application I created, then make a call to /v2.3/[BUSINESS_ID]/product_catalogs, I get the following error:

"message": "(#275) Ad account cannot be determined for this request", 

If I call the ad account directly, at /v2.3/act_[adaccountId], i can see the ad account information just fine.

If I create a product catalog myself in business manager, then call the endpoint for details on that product catalog at /v2.3/[product_catalog_id], i get the following:

"message": "(#200) The app is not whitelisted to use this API", 

If i am accessing catalogs that i am the admin for, and for apps that i am the admin for, and am using development access, why would it need to be whitelisted?

Maria Ines Parnisari
  • 16,584
  • 9
  • 85
  • 130
kerms
  • 33
  • 3

1 Answers1

7

The issue here is as you said, your application is in the Development Tier for the Ads API. There are 3 tiers to the Ads API:

  1. Development Tier
  2. Basic Tier
  3. Standard Tier

All of which are documented in the Marketing API Access Levels documentation. In order to access any part of the Business Manager API your application will need to have access to the Standard Tier.

I would recommend that you follow the steps in the documentation to move up the levels and when you believe you are ready, you can apply for Standard Tier Access

The1Fitz
  • 662
  • 4
  • 8
  • 5
    I find it hard to swallow that the business manager API cannot be used with the "Development" tier for whitelisted apps, and that instead you would need to have "Standard" access. Is this really the case? If so, how are you supposed to test out various endpoints and get approved for "basic" tier and then "standard" tier? – st.derrick Oct 03 '16 at 22:05