通过php通过标签获取Instargam照片

问题描述 投票:0回答:1

i通过file_get_contents抓取数据,并且比preg_match图片抓取数据,已经可以使用两年了,但是现在停止了。 Insta拒绝并加载空白的html页面。您知道如何解决它吗?

<?
file_get_contents("https://www.instagram.com/explore/tags/roofers");
preg_match( "/window._sharedData \=(.+),\"is_canary/im", $str, $matches );
...
?>
php instagram file-get-contents
1个回答
0
投票

Instagram使用此链接重定向到登录页面。我不是Instagram粉丝,所以我只能假定此链接曾经未经授权打开。最有可能的是,您首先需要经过授权(例如,使用curl),然后才可以访问内容链接。

© www.soinside.com 2019 - 2024. All rights reserved.