Instagram Search for a tag within particular date range

落爺英雄遲暮 提交于 2019-11-28 11:50:36

call the API with max_tag_id and min_tag_id like this:

https://api.instagram.com/v1/tags/{tag-name}/media/recent?client_id={CLIENT_ID}&max_tag_id=1378677250000000&min_tag_id=1375998850000000

max_tag_id and min_tag_id is epoch_time + "000000"

you still only get 20 per API call, use pagination to get all

Update: Instagram changed the tag_id, so date filter cannot be done this way. Login on http://gramfeed.com and search for a hashtag and you can do date/time filter, its a different hack implementation.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!