我正在尝试使用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��%
答案 0 :(得分:0)
我的域名暂时被禁止向网址发出请求。我在另一台服务器上测试了代码并且运行良好。