file_get_contents()在特定URL上失败:无法打开流:HTTP请求失败! HTTP / 1.0 429

时间:2017-04-23 19:24:16

标签: php http-status-code-429

我正在尝试使用Steam API,但每当我使用带有Steam社区网址的file_get_contents()时,我都会收到此错误:

Warning: file_get_contents(http://steamcommunity.com/market/priceoverview/?currency=1&appid=578080&market_hash_name=Gas%20Mask): failed to open stream: HTTP request failed! HTTP/1.0 429

例如,如果我在Google.com上使用file_get_contents(),则会返回页面而不会出现错误。我试过使用只返回随机字符的curl。这是我使用的代码:

// create curl resource 
$ch = curl_init(); 

// set url 
curl_setopt($ch, CURLOPT_URL, "http://steamcommunity.com/market/priceoverview/?currency=1&appid=578080&market_hash_name=Gas%20Mask"); 

//return the transfer as a string 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 

// $output contains the output string 
$output = curl_exec($ch);

// close curl resource to free up system resources 
curl_close($ch);

echo $output;

结果:

��+��O��%

1 个答案:

答案 0 :(得分:0)

我的域名暂时被禁止向网址发出请求。我在另一台服务器上测试了代码并且运行良好。