Posts tagged with instagram

We want to use the Instagram Graph API to get a list of public accounts that have used a specific tag recently (or a @). I already set the app up but before I am going to dive more deeply, I want to ask whether this is possible. Because the last post I read about it (in 2020) it wasn't possible due to privacy, but the lines that were quoted, aren't in the recent manual so I am not sure whether it is still applicable. I can't find another recent answer about it.

Does someone knows this? Thank you so much!

Post I mentioned Facebook Instagram Graph Api Get Tags with username The recent manual: https://developers.facebook.com/docs/instagram-api/guides/hashtag-search

I already googled it to try to find the answer

I have been trying to fetch posts from instagram user profiles that are not professional/business profiles.

I am using below url: https://graph.instagram.com/USER_ID/media?fields=id,caption,media_type,media_url,thumbnail_url,permalink,timestamp&access_token=ACCESS_TOKEN Instead of giving me posts it gives me this error: Sorry, this content isn't available right now

Question: How can I use Instagram Basic Display API to fetch page or user posts without having the user to login through instagram or facebook?

I am having trouble obtaining the pages_read_engagement and pages_show_list and ... permissions for my Facebook app. I just created the app and selected the Facebook Login type, but the only permissions available in the use cases are email and user_profile.

I want to create an app that can automatically reply to comments with direct messages, so I need the following permissions:

  • pages_show_list

  • pages_read_engagement
    and ...

Here are the steps I have taken so far:

  1. Created a new Facebook app.

  2. Selected "Facebook Login" as the type.

  3. Tried to configure permissions but only saw options for email and user_profile.

How can I add the necessary permissions for my app? Is there a specific process or additional steps I need to follow to request these permissions?

Any help or guidance would be appreciated.

I'm currently working on an automated system that gathers Instagram profile insight data and sends it to an endpoint. However, I'm facing a challenge due to the large number of Instagram accounts I need to manage—more than 100 in total.

As a beginner in this area, I understand that utilizing the Instagram Graph API would be the most efficient approach. However, manually setting up access for each of the accounts seems like a time-consuming task.

Could anyone provide guidance on how to streamline this process? I'm looking for a clear explanation or a step-by-step guide on how to automate access to the Instagram Graph API for multiple accounts.

Any help or insights would be greatly appreciated!

I'm encountering an issue with retrieving Instagram posts using the Facebook Graph API. When I use recent timestamps within a month, the following code works fine:

graph.facebook.com/v19.0/{instagram_business_account}?fields=business_discovery.username({ig_user_id}){media.since(1704477217).until(1714477219){timestamp,caption}}&access_token={access_token}

However, when I attempt to use older timestamps, even though the time interval (difference between since and until) remains the same, the request doesn't return the expected results.

For instance:

graph.facebook.com/v19.0/{instagram_business_account}?fields=business_discovery.username({ig_user_id}){media.since(1672834201).until(1672835201){timestamp,caption}}&access_token={access_token}

Despite being certain that there's a specific post at that interval of time, the API doesn't seem to return it.