Instagram通过名称API找到Hashtag



我正在构建一个Instagram标签查找应用程序,我正在寻找一种按名称获取Instagram标签以及其他类似标签建议及其帖子数的方法。

我阅读了有关Instagram API端点的信息:https://api.instagram.com/v1/tags/search?q=snowy&access_token=XXXX

但这个旧的Instagram API平台已被弃用,无法在新的Graph API上看到类似的端点。

此外,如果有任何方法可以在不需要用户登录Instagram的情况下做到这一点,那将是首选。

提前谢谢。

v1 API中的Hashtag id搜索端点已被弃用[1],并已转移到Facebook的Graph API[2]。只要你有一个Instagram用户id和该用户的访问令牌,你就可以使用Facebook Graph Explorer[3]来查询该端点。

[1]https://www.instagram.com/developer/changelog

[2]https://developers.facebook.com/docs/instagram-api/reference/ig-hashtag-search

[3]https://developers.facebook.com/tools/explorer

最新更新