0

我正在尝试使用 Steam API,但每当我使用带有 Steam 社区 URL 的 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��%
4

1 回答 1

1

我的域被暂时禁止向该 URL 发出请求。我在另一台服务器上测试了代码,它工作正常。

于 2017-04-23T19:50:35.433 回答