我正在使用以下代码从Twitter API中检索一定数量的推文:
$cache_file = "cache/$username-twitter.cache";
$last = filemtime($cache_file);
$now = time();
$interval = $interval * 60; // ten minutes
// Check the cache file age
if ( !$last || (( $now - $last ) > $interval) ) {
// cache file doesn't exist, or is old, so refresh it
// Get the data from Twitter JSON API
//$json = @file_get_contents("http://api.twitter.com/1/statuses/user_timeline.json?screen_name=" . $username . "&count=" . $count, "rb");
$twitterHandle = fopen("http://api.twitter.com/1/statuses/user_timeline.json?screen_name=$username&count=$count", "rb");
$json = stream_get_contents($twitterHandle);
fclose($twitterHandle);
if($json) {
// Decode JSON into array
$data = json_decode($json, true);
$data = serialize($data);
// Store the data in a cache
$cacheHandle = fopen($cache_file, 'w');
fwrite($cacheHandle, $data);
fclose($cacheHandle);
}
}
// read from the cache file with either new data or the old cache
$tweets = @unserialize(file_get_contents($cache_file));
return $tweets;
当然,$ username和fopen请求中的其他变量是正确的,它会生成正确的URL,因为我收到错误:
警告:fopen(http://api.twitter.com/1/statuses/user_timeline.json?screen_name=Schodemeiss&count=5)[function.fopen]:无法打开流:HTTP请求失败!第187行/home/ellexus1/public_html/settings.php中的HTTP / 1.1 400错误请求
每当我尝试打开我的页面时,^^错误都会返回。
为什么会出现这种情况?我是否需要使用OAuth来获取我的推文!?我是否必须将我的网站注册为可能获得帖子的地方?
我真的不确定为什么会这样。我的主人是JustHost.com,但我不确定这是否会造成任何差异。欢迎所有想法!
感谢。
安德鲁
PS。这段代码位于一个函数中,其中正确传递了用户名,区间和计数,因此在错误代码中它创建了一个格式良好的地址。
答案 0 :(得分:6)
你有可能获得限速
400错误请求:请求无效。伴随的错误 消息将解释原因。这是将返回的状态代码 在限速期间。
非认证通话每小时150次请求(基于IP地址)
每小时350次针对经过身份验证的呼叫的请求(基于经过身份验证的用户呼叫)
您必须进行身份验证才能避免弹出这些错误。
请在处理Twitter时使用cURL
。我使用file_get_contents
和fopen
来调用twitter API,发现它非常不可靠。你会偶尔受到打击。
将fopen
替换为
$ch = curl_init("http://api.twitter.com/1/statuses/user_timeline.json?screen_name=$username&count=$count");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$it = curl_exec($ch); //content stored in $it
curl_close($ch);
答案 1 :(得分:1)
这可能会有所帮助
Error codes
https://developer.twitter.com/en/docs/basics/response-codes.html
错误代码定义在上面的链接中给出