php huoqu json,使用PHP从网页获取JSON数据

我正在尝试从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()转换&和自动.

我的下一步是尝试卷曲.我首先尝试了以下代码:

// 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&currency=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 Web API.

本质上,Steam返回状态为“ 400 Bad Request”的错误.但是,可以通过执行以下操作忽略此错误:

$url = "https://steamcommunity.com/market/pricehistory/?country=US&currency=1&appid=730&market_hash_name=SG%20553%20%7C%20Damascus%20Steel%20(Factory%20New)";

$context = stream_context_create(array(

'http' => array(

'ignore_errors'=>true,

'method'=>'GET'

// for more options check http://www.php.net/manual/en/context.http.php

)

));

$response = file_get_contents($url, false, $context);

echo $response; // returns "[]"

?>

标签:curl,steam-web-api,json,php

来源: https://codeday.me/bug/20191028/1948695.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值