How to get all public posts using Instagram API?

I am trying to get all public messages using Instagram API.
There are some existing applications, such as Geofeedia, COEverywhereand TrackinU, which can receive public messages about social networking sites.

Is there a way to get public messages like in Twitter Stream API?

+4
source share
4 answers

Instagram removed the ability to receive all public messages with the specified hashtag. The api you would use is deprecated: https://www.instagram.com/developer/deprecated/endpoints/tags/

, , , , .

+5

-API : https://github.com/whizzzkid/instagram-proxy-api

#nyc: Instagram tag explorer: https://www.instagram.com/explore/tags/nyc

, JSON: https://igpi.ga/explore/tags/nyc/media

. , : https://github.com/whizzzkid/instagram-reverse-proxy/blob/master/app.js

-, jquery, :

$.ajax({
  url: "https://igpi.ga/explore/tags/yyc/media",
  dataType: "jsonp",
  data: { count: 3 },
  success: function (json){
    for(var i in json.posts) {
      var img = document.createElement("IMG");
      img.src = json.posts[i].display_url;
      document.body.appendChild(img);
    }
  }
});

: http://plnkr.co/edit/4oCwpbMm6p9cyJb1UWld?p=preview

, .

+1

API Instagram . , API:

  • hashtag
0

Source: https://habr.com/ru/post/1613291/


All Articles