How to get ALL Instagram POSTs by hashtag with the API (not only the posts of my own account)
I am trying to get all the instagram pictures tagged with
You can get the posts in raw JSON by simply accessing this URL: https://www.instagram.com/explore/tags/summer/?__a=1
Then just use javascript/jquery to fetch the data an loop through the posts. You get 12 posts, and a variable to see if there are more pages.
Example of getting latest 6 posts:
$.get('https://www.instagram.com/explore/tags/summer/?__a=1', function (data, status) {
for(var i = 0; i < 6; i++) {
var $this = data.graphql.hashtag.edge_hashtag_to_media.edges[i].node;
$('#container').append('');
}
});