【发布时间】:2015-08-20 22:30:39
【问题描述】:
我正在尝试从 here (example url) 获取响应,首先,我认为我应该使用 file_get_contents()
当我尝试这个时,我得到了以下错误:
Warning: file_get_contents(https://steamcommunity.com/market/pricehistory/?country=US&currency=1&appid=730&market_hash_name=SG%20553%20|%20Damascus%20Steel%20(Factory%20New)): failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request
我知道这是因为它将 & 转换为 &。我尝试了很多方法来解决这个问题,但是它们都失败了,在快速谷歌之后,我得出的结论是 file_get_contents() 会自动将 & 转换为 &。
我的下一步是尝试 curl。我首先尝试了以下代码:
// Get cURL resource
$curl = curl_init();
// Set some options - we are passing in a useragent too here
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => 'http://steamcommunity.com/market/pricehistory/?country=US¤cy=1&appid=730&market_hash_name='.$hash,
CURLOPT_USERAGENT => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.2 (KHTML, like Gecko) ChromePlus/4.0.222.3 Chrome/4.0.222.3 Safari/532.2'
));
// Send the request & save response to $resp
$resp = curl_exec($curl);
// Close request to clear up some resources
curl_close($curl);
但这返回了‹ŠŽÿÿ)»L 作为响应。我想知道这是否与 json 编码有关,所以我尝试将它通过 json_decode() 但它不起作用。
接下来,我尝试了:
// Get cURL resource
$curl = curl_init();
// Set some options - we are passing in a useragent too here
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => 'http://steamcommunity.com/market/pricehistory/',
CURLOPT_USERAGENT => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.2 (KHTML, like Gecko) ChromePlus/4.0.222.3 Chrome/4.0.222.3 Safari/532.2',
CURLOPT_POST => 1,
CURLOPT_POSTFIELDS => array(
country => "US",
currency => 1,
appid => 730,
market_hash_name => "SG%20553%20|%20Damascus%20Steel%20(Factory%20New)"
)
));
// Send the request & save response to $resp
$resp = curl_exec($curl);
// Close request to clear up some resources
curl_close($curl);
但又得到了回复‹ŠŽÿÿ)»L。
这个响应是什么意思,我可以解析它吗?如果没有,我应该如何正确获取这些数据?此外,为什么 file_get_contents() 不起作用?
【问题讨论】:
-
您是否需要某种类型的访问令牌才能访问 Steam 网络 API?
-
事实证明,您必须登录 Steam 才能访问价格概览 - 这与大多数 API 不同,后者需要 API 密钥
标签: php json curl steam-web-api