This question will look like a duplicate of all the previous ones, in particular this PHP Instagram API question - how to get MIN_TAG_ID and MAX_TAG_ID . But with new API changes, previous answers no longer work.
goal
I want to request media for a specific tag.
Documentation
Instagrams documentation for receiving tagged media indicates that you need to have a public_content and that there are 4 options available; ACCESS_TOKEN , COUNT , MIN_TAG_ID and MAX_TAG_ID .
My API request
https:
Which gives me this API response.
{ "data": [], "meta": { "code": 200 }, "pagination": { "deprecation_warning": "next_max_id and min_id are deprecated for this endpoint; use min_tag_id and max_tag_id instead" } }
Problem
As you can see from the request, I do not specify any of the obsolete parameters; next_max_id or min_id .
I tried these alternative queries with the same result:
Things I Viewed
My application statement: I have an isolated application for which I use the same account for authentication. If I understand the documentation correctly, I should have access to all the APIs with my setup.
Available media: I use the "cat" tag for testing, which should have a lot of facilities for the request.
My ACCESS_TOKEN : I don't think this is a problem because I use the same access token to make authenticated requests to the public_content for / users / user-id / media / recent endpoint.
Official python-instagram repo: I couldn’t make out how they make requests, but the last commit was in July, so I'm not even sure that it works with the latest API.
Related Quesions
source share