Questions tagged [instagram-api]

The Instagram API enables the integration of Instagram's photos\videos content and functionality into a website, application or a device. Tag specific questions about the use of Instagram API.

This tag collects questions about the use of Instagram API.

Instagram’s API uses the OAuth 2.0 protocol for simple, but effective authentication and authorization. OAuth 2.0 is much easier to use than previous schemes; developers can start using the Instagram API almost immediately. The one thing to keep in mind is that all requests to the API must be made over SSL (https:// not http://)

Official Developer Site: Link

Facebook' Instagram Graph API support: Reference

Instagram API tutorial

2971 questions
1
vote
2 answers

Instagram lookup user

I tried the following endpoint: GET https://api.instagram.com/v1/users/search?access_token=&q=emilia_clarke but what I got was : {"meta": {"code": 200}, "data": []} the token has public scope. what did I miss? Thanks
musicsquad
  • 95
  • 1
  • 3
  • 9
1
vote
1 answer

How Can I Generate an Instagram Access Token Using their Implicit Flow?

I want to use the Instagram API to show my own content on my own website. I can see in their documentation that content owners can display up to 20 pieces of media on their site while the app is in Sandbox mode. I've created an app on my account and…
Michael Lynch
  • 2,682
  • 3
  • 31
  • 59
1
vote
2 answers

Get the specific username data with Instagram API

I am trying to search and get datas (Profile picture and username )from the exact or specific username with Instagram API. The problem is if I search for example starwars it won't show me the official page it shows me this username : starwars_viii…
iOS.Lover
  • 5,923
  • 21
  • 90
  • 162
1
vote
1 answer

Login Through Instagram App instead of Safari

I need to integrate Instagram login in my app. So I am redirecting to safari in my application to login in Instagram. but what i have to do is, if user have Insta app installed and he/she is already logged in there then the login screen should not…
Priyanta Singh
  • 77
  • 1
  • 12
1
vote
2 answers

Can not get Instagram Access Token using request module in node

I'm building a simple node app using request and Instagram api and I'm trying to make a call for the instagram access token in the final step of the oauth process. For some reason Instagam's api is responding with a 400 saying my client_id is not…
nivo1000
  • 199
  • 1
  • 1
  • 8
1
vote
1 answer

Retrieving information from Instagram using an unauthenticated request?

I'm attempting to use the Instagram with Python and I'm running into an issue just using the stock examples on their GitHub page. I'm following the steps exactly in the first unauthenticated request section, and I'm being thrown the following…
user5359735
1
vote
4 answers

Is there any way of getting instagram User _ID without using the instagram API?

My task is NOT to generate any application or website but just to write a PYTHON script which gives usernames as an input and retrieve User ID as a result. As instagram asks for Application name, website, URI and all other stuff to be able to…
rohit nair
  • 240
  • 4
  • 16
1
vote
1 answer

Can't receive images by hashtag

I'm trying to get all images with a specific tag by Instagram API. First I send this request: https://api.instagram.com/v1/tags/tag?access_token=XXXX and get response: { "meta": { "code": 200 }, "data": { "media_count": 8215885, …
Dmitry
  • 304
  • 1
  • 13
1
vote
1 answer

Instagram API. XMLHttpRequest cannot load URL. Response for preflight has invalid HTTP status code 405

I'm pretty new on using APIs and I am having a problem with Instagram's new api. For a dislike function, the documentation states to use a delete method, but I keep getting an error: XMLHttpRequest cannot load URL. Response for preflight has invalid…
Jean Patricio
  • 331
  • 3
  • 8
1
vote
1 answer

Instagram API real time updates of likes and comments

I read the new documentation for Instagram subscriptions API. It says that after you subscribe, Instagram will notify you when people post new media on their page. I would like to be notified when one of the user's post receive a new like or a…
Catalin
  • 752
  • 1
  • 16
  • 32
1
vote
1 answer

Instafeed - Instagram: this user does not exist

I am using http://instafeedjs.com/ on my development site, I've got it to pull the most recent 20 photos with a username so I know my code is fine. I have tried to register a different user to pull their details and I get the following…
nsilva
  • 5,184
  • 16
  • 66
  • 108
1
vote
0 answers

Instagram - media user and caption user stored separately

I'm playing around with instagram's API and got a JSON object as below, assume it's stored in variable media { id:'1222XXXXXX_XXXXX', created_time: "1459991213", user: { username: "user1", profile_picture: "http://link", …
Lee
  • 2,874
  • 3
  • 27
  • 51
1
vote
1 answer

How to use PHP Instagram Signature with AJAX?

I'm stuck on the new Instagram API, where it is a requirement to use an Enforced Signed request, that uses both an Access Token and the Client Secret to make a Signature. If anyone has any time at all to look, I would really appreciate it I have…
1
vote
0 answers

Use of instagram public media data

I'm a mobile developer, and I'm working on an app that's loading images from some instagram-users. The app doesn't post anything to instagram and I don't want to bother my app-users with a login screen to instagram. So I want the app-user to be able…
Wiingaard
  • 4,150
  • 4
  • 35
  • 67
1
vote
1 answer

Instagram API Subscribe inconsistently working

I have experienced significant variability when using the Instagram Subscription API. For the most part, the API will not post updates to my end-point as specified during the subscribe initiation. My understanding is that the subscription is…
L33t8l
  • 49
  • 6
1 2 3
99
100