0

我有以下问题:当这个脚本运行时

    $url = 'http://search.twitter.com/search.json?q=obama';
    $tw = file_get_contents($url,0,null,null);

我收到这条消息。

Warning (2): file_get_contents(http://search.twitter.com/search.json?q=obama) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.0 420 Client Error (420)

但这很奇怪,因为它一直在工作!你能帮助我吗?添加...我尝试以这种方式使用 CURL

$url = 'http://search.twitter.com/search.json?q=obama';
$c = curl_init();
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_URL, $url);
$contents = curl_exec($c);
echo $contents;
curl_close($c); 

但是调用返回此消息“错误”:“您已受到速率限制。增强您的冷静。”}这似乎很荒谬,因为我之前没有提出任何要求。

4

1 回答 1

0

我到处发现这种情况下的最佳实践是使用 CURL。我不知道为什么,但后来我尝试使用urlencode传递参数('obama') ,这似乎是该语法(以前不正确)是此警告的主要原因。

于 2013-05-17T10:43:20.443 回答