Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to get the Instagram news feed through the API?

When you open the Instagram APP you can look at your news feed where you can see that someone is now following you, likes or has commented on a certain photo.

When I look at the Instagram API (http://instagram.com/developer/) I can retrieve likes and comments when I request a certain media ID. However in order to know if someone has commented on a photo of mine I would need to scan all the photo's and request it's comments to check if any new comments have been made.

Does anyone know of a better way? Help is appreciated.

like image 996
Mark Avatar asked Aug 04 '13 12:08

Mark


People also ask

Does Instagram have an API for posting?

You can use the Instagram Graph API to publish single images, videos, reels (i.e. single media posts), or posts containing multiple images and videos (carousel posts) on Instagram Business accounts.

What information can I get from Instagram API?

The API can be used to get and publish their media, manage and reply to comments on their media, identify media where they have been @mentioned by other Instagram users, find hashtagged media, and get basic metadata and metrics about other Instagram Businesses and Creators.

How do I use Instagram basic API?

Go to Dashboard, scroll down, locate the Instagram product, and click Set Up to add it to your app. Click Basic Display, scroll to the bottom of the page, then click Create New App. In the form that appears, complete each section using the guidelines below.


1 Answers

If it helps, content for "Following" tab is available at http://instagram.com/api/v1/news/, and "News" tab at http://instagram.com/api/v1/news/inbox/ (you need to be logged in to your account). All URLs point to internal instagram:// protocol so you would need to replace them when parsing and there seem to be no pagination options.

like image 136
rommaz Avatar answered Nov 12 '22 07:11

rommaz