skip to Main Content

I have an Instagram Business Account connected to a Facebook Page. When I try to access Instagram via the Graph-API I get an Unsupported get request. Object with ID '{instagram account-id}' does not exist, cannot be loaded due to missing permissions, or does not support this operation.
The query I tried was (among others): /v3.0/{insta-id}?fields=follow_count

I tried personal- and page access tokens. What am I missing?
Thanks

2

Answers


  1. What’s interesting is that in your message you used {instagram account-id} to replace a numeric value that you saw in Facebook response. This number IS NOT your Instagram ID (as in your ID on Instagram). This number is Facebook’s Instagram Business ID. It goes like this:

    Facebook page (facebook page id) is associated with an Instagram Profile (instagram id) via Instagram Business Account (instagram business id).

    In your above message, that ID is “instagram business id”.

    Why would it be missing? It is important how it was created: Instagram user, on their device, converted their Instagram account to Instagram Business account. When they did the selected a facebook page. This created “instagram business id”.

    If this user ever loses admin access to the Facebook page (or becomes anything other then admin) – “instagram business id” will become invalid.

    How to fix? Simple, go to your device, convert your instagram profile to personal and then convert it back to business. You will get a new “instagram business id” so you will need to query that on your page.

    Login or Signup to reply.
  2. You need to use the following request

    me?fields=instagram_business_account – ยป

    By this in the response you will get the business page id on that node you can make severall request.

    For instance

    {id}/media?fields=caption,like_count,comments_count,media_url

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search