如何通过标签获取Instagram图像而无需身份验证?

时间:2016-06-26 04:11:20

标签: php instagram-api

我是在我的网站上开发的,Instagram API的V.1用于搜索图像的标签,其中包含以下网址:

 $url = 'https://api.instagram.com/v1/tags/' . $tagName . '/media/recent?client_id=myclientid' . '&count=20';

这很好但最近没有工作并且被Instagram弃用了。有没有办法让结果白化身份验证?

1 个答案:

答案 0 :(得分:2)

不幸的是,你的问题的答案是否定的。

如您所知,Instagram最近对使用其API应用了更严格的要求。任何打算使用Instagram API的应用程序都必须提交任何所需范围的请求。

basic - to read a user’s profile info and media

public_content - to read any public profile info and media on a user’s behalf

follower_list - to read the list of followers and followed-by users

comments - to post and delete comments on a user’s behalf

relationships - to follow and unfollow accounts on a user’s behalf

likes - to like and unlike media on a user’s behalf

标签属于public_content范围。如果您没有通过审核流程,那么大部分都是直截了当的。您提供了应用程序的说明以及它将如何使用API​​。当我提交和申请审查时,让我措手不及的一件事就是要求提交一个视频,说明你要求的范围将如何使用。