如何使用instagram API访问公共媒体?

时间:2018-11-01 23:52:17

标签: facebook-graph-api instagram-api instagram-graph-api

我只能看到自己的帖子,我目前正在这样做

https://api.instagram.com/v1/tags/blueskies/media/recent?access_token=##########

如何获得其他用户发布的带有#blueskies标签的公共媒体

1 个答案:

答案 0 :(得分:0)

您必须使用新的Instagram Graph API来获取标签的公共内容: https://developers.facebook.com/docs/instagram-api

(您正在使用的API将很快被弃用,并且将无法使用。)

使用Instagram Graph API(两步方法),您首先必须使用hashtag_search API https://developers.facebook.com/docs/instagram-api/hashtag-search

获取hashtag_id
graph.facebook.com/ig_hashtag_search?user_id={USER_ID}&q=blueskies

这将提供hashtag_id,然后您可以使用主题标签API https://developers.facebook.com/docs/instagram-api/reference/hashtag/

获取最新的或热门主题标签媒体
graph.facebook.com/{HASHTAG_ID}/recent_media?user_id={USER_ID}&fields=id,media_type,comments_count,like_count