How to get ALL Instagram POSTs by hashtag with the API (not only the posts of my own account)

前端 未结 2 2044
傲寒
傲寒 2021-02-05 22:47

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

相关标签:
2条回答
  • 2021-02-05 23:22

    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('<img src="'+  $this.thumbnail_resources[2].src +'">');
        }
    });
    
    0 讨论(0)
  • 2021-02-05 23:25

    When you register for API client, you will be sandbox mode (development/test mode), in this mode you will get only your and your sandbox user's data in API response.

    Once you complete app, you have to submit for review to instagram, if approved then you can set app to Live mode, and then you will see all posts in API response.

    P.S. Note that you have have public_content permission in oauth scope to get all posts

    0 讨论(0)
提交回复
热议问题