在php中获取instagram故事

时间:2017-06-01 23:50:31

标签: php curl instagram

有没有办法让Instagram故事成为json?

我使用了这段代码:

function Geturl($url){
    $process = curl_init($url);
    curl_setopt($process, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($process, CURLOPT_COOKIE, "ds_user_id=155428129100; sessionid=<my session id>");
    curl_setopt($process, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36");
    $return = curl_exec($process); 
    if(curl_error($process))
    {
        return 'error:' . curl_error($process);
    }
    curl_close($process); 

    return $return;
}
var_dump(Geturl("http://i.instagram.com/api/v1/feed/user/1554289100/reel_media/"));

<my session id>是我在Instagram网站时从HTTP Spy扩展获得的会话ID

但是没有用,给我这个:

string '{"message": "login_required", "logout_reason": 4, "status": "fail"}' (length=67)

我也在我的ssl主机上修改了这段代码而且它没有用,但我确信它可以获得Instagram故事

0 个答案:

没有答案