How can I get catalog_management and business_management permissions? I dont see at anywhere in my apps. I tried
1

How can I get catalog_management and business_management permissions? I dont see at anywhere in my apps. I tried to create access token, using this docs: https://developers.facebook.com/docs/facebook-login/guides/access-tokens#apptokens

But when I try to schedule my catalog, I get an error: FacebookAdsApi.init(app_id, app_secret, access_token)

    # Create a new product feed
    catalog = ProductCatalog(catalog_id)
    params = {
        'name': 'Scheduled Product Feed',
        'schedule': {
            'interval': 'DAILY',
            'url': feed_url,
            'hour': 22,
        },
    }

product_feed = catalog.create_product_feed(params=params)

Error:

{ "error": { "message": "Unsupported post request. Object with ID 'xxxxxxxxxxxxx' 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", "type": "GraphMethodException", "code": 100, "error_subcode": 33, "fbtrace_id": "AgkeH3ria4Ng00iG_Qx1-ug" } }

Probably I need catalog_management and business_management, but I dont know how can I get it. I dont see theese permissions(or use cases) in my app.

Ruslan
Asked about 3 weeks ago