API Instagram - Search public photos by TAG

-1

I want to get all the photos with a specific HASHTAG, but when using the following URL offered by the Instagram API ...

*

  

https://api.instagram.com/v1/tags/{tag-name}?access_token=ACCESS-TOKEN

*

... it simply returns my photos from my profile with HASHTAG, as I started to study this API yesterday, I believe it is ACCESS_TOKEN that is doing this, since there is a link to my account, just suspicious, I would like to know the best way to capture all the public photos with the specific Hashtag, could anyone help me?

... I've been reading that the API has had some changes allowing only access to non-FEED photos, but I've found a desktop application that does everything a little, the name is 4K Stogram, how can this be? In case I want to do the same thing ...

link

    
asked by anonymous 13.07.2016 / 03:39

1 answer

1

The endpoint you are looking for is this:

https://api.instagram.com/v1/tags/{tag-name}/media/recent?access_token=ACCESS-TOKEN

Take a look at the official Instagram API documentation .

    
13.07.2016 / 08:58