我正在使用旧的Instagram API。如果我使用cUrl它会很快,但我必须使用套接字或file_get_contents() - 然后它需要10秒以上的响应。
我尝试发送各种标题,如'连接:关闭'和使用http 1.0 / 1.1 - 但没有任何帮助。
这里代码示例:
卷曲
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.instagram.com/v1/users/self/?access_token=some_token");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$res = curl_exec($ch);
curl_close($ch);
print_r($res);
file_get_contents()函数
$res = file_get_contents("https://api.instagram.com/v1/users/self/?access_token=some_token");
print_r($res);
cUrl总是比file_get_contents()
快,我们也在我们的网站上尝试这个,但最好的方法是cUrl.that响应比file_get_contents()快。
如果你像
'Connection: close'
设置标题,但你不能更快地得到响应