Questions tagged [instagram-graph-api]

The Instagram Graph API allows you to programmatically access Instagram Business Accounts so you can more easily manage media objects, view comments and metadata, and get insights and metrics, get hashtag data, mentions and more.

The Instagram Graph API is a standard REST API that supports basic CRUD operations. It works by checking a User's access token for any Facebook Page roles. If the User has a role on a Page, and that Page is connected to an Instagram Business Account, the User can grant your app permission to access the connected business account's data.

Documentation: Instagram Graph API | API Reference

561 questions
0
votes
1 answer

Instagram Basic API - Authorization issue

I'm trying to utizlie Insatgram Basic Display API to get some information about particular Instagram post. I'm going through Facebook API documentation, but there are some inconsistencies I can't seem to find solution to. My goal is to create a…
0
votes
0 answers

New Instagram API PHP

1) Regarding the new Instagram API, is there another way, than curl, but still in PHP to post a photo (like Facebook API)? // (For example) : // Possibility to install Instagram SDK with composer ? And then: use Instagram\Instagram; $ insta = new…
heyselecta
  • 1
  • 1
  • 1
0
votes
1 answer

Can I make a programm that downloads and stores images in my pc based on an account or a hashtag?

Title says it all if I can I want to know how I am a noobie in programming and I have never attempted anything like that before. Thanks,Manos
0
votes
1 answer

is there any way to get category of instagram business account from graph api?

i want get some information about Instagram business account from graph api. but i don't find any way to know about category of account. this code give me some information but not about category.…
Mohammad Anvari
  • 567
  • 5
  • 8
0
votes
1 answer

Instagram : access_token is invalid

I want to retrieve images of Instagram account. For that, I create app and generate access token and when I use that access_token. It's return error Error : /**/ jQuery1124087702457304885_1585566511276({"meta": {"code": 400, "error_type":…
Rohan Hapani
  • 139
  • 1
  • 3
  • 16
0
votes
1 answer

Instagram API get posts by location geotag

Is it possible to get Instagram posts by location (geotag) from Instagram API? I'm trying to look at the following SO question: how to get location-id of instagram api in android But all the API links not working. Any suggestions?
smallla
  • 21
  • 2
0
votes
1 answer

Will my instagram app stop working when legacy api will be disabled?

I found it very hard to understand what exactly will be disabled at the end of March 2020. Instagram says that they will disable legacy api but I don't know how to check if it will affect my app. My app use endpoints like: -…
Bart
  • 3
  • 1
0
votes
1 answer

Instagram access token for graph API

I'm working on fetching posts from Instagram accounts but I got stuck in creating the access token I do not know why it is that complicated! Can anyone walk me through the steps of getting a long live access token? I already created the app and have…
0
votes
1 answer

Get profile picture other account on comment instagram graph-api | facebook defeloper

Get profile picture other account on comment instagram graph-api | facebook defeloper $body =…
0
votes
1 answer

Instagram Basic Display API connection error

I am trying to build a simple application to get a users latest instagram posts. I have followed all of Facebooks 'Get Started' guide, and am using the following URL to connect to the Instagram Authorization…
Joe Leese
  • 1
  • 2
0
votes
1 answer

Instagram post's caption is not showing properly

I am trying to get instagram profile's post with captions, everything is working fine except captions. It showing : [object Object] I haven't used any api. My code: function nFormatter(num){ if(num >= 1000000000){ return…
0
votes
1 answer

Instagram New API - how to get authorization code using purely PHP code

Main Aim: To get access_token so I may display my Instagram feed on the website. Currently, to get an access token, we go to this url and click on Authorize to get the code, further exchanged for access_token. …
Div
  • 63
  • 2
  • 10
0
votes
1 answer

Automatically extend facebook user access token beyond 60 days for Instagram feed

Per FB documentation for long-lived token retrieved by Facebook SDK - Native mobile apps using Facebook's SDKs get long-lived User access tokens, good for about 60 days. These tokens are refreshed once per day, when the person using your app makes…
pkid169
  • 2,240
  • 2
  • 15
  • 22
0
votes
1 answer

link my existing instagram application with facebook application

So I already have FB app and Instagram application on instagram.com. Now I want to move my instagram application under my FB application is there any option to do that? If not, my fb app is in live mode and if I create instagram app under FB app it…
Sagar Khatri
  • 1,004
  • 8
  • 23
0
votes
0 answers

getting insight media data (like comments and location) of public Instagram account (not business) from Instagram API

my requirement is to get instagram user media data (like_count,comments,location).it was going fine with instagram Api until it announced it to deprecating those APi and shifted to Facebook Instagram Graph APi and Instagram Basic Display API.i cant…