I'm trying to develop a simple platform for instagram insights using the new Facebook Graph Instagram API and can't get the right permissions to access my instagram business page. My current setup has my instagram business page connected to my facebook business page with a shared ad account for both.
When I make this request to grab the instagram business page id from the facebook business page using the Graph API Explorer (seen in the documentation here):
/v2.10/{facebook_page_id}?fields=instagram_business_account
I get the error:
{
"error": {
"message": "(#100) No permission to access the Instagram account",
"type": "OAuthException",
"code": 100,
"fbtrace_id": "CU9oNYEt2+q"
}
}
The documentation references the need for one of these permissions:
instagram_basic
instagram_manage_comments (optional)
instagram_manage_insights (optional)
However there are no options in the Graph explorer for any of these permissions (see photo below). Boiled down my questions is how do I authenticate my app so that I have permission to get instagram insights from my instagram business page?