我最近开始使用来自https://www.mashape.com/的API,我相信我已经获得了我需要的数据,但我不确定如何使用它。它返回(我相信)一个对象,我尝试将类型转换为数组,但我仍然没有成功地提取我需要的数据。该对象看起来像:
Unirest\HttpResponse Object
(
[code:Unirest\HttpResponse:private] => 200
[raw_body:Unirest\HttpResponse:private] => {
"_": {
"APP_ID": "server_tracked"
},
"success": true,
"requestTime": "2013-08-21T21:02:59-07:00",
"shard": "North_America:YjNmMjE4YmVhZjgxN2M0ZGI0ZTU1YzQ0MWZiMzQ5MGJkMjFhMGRmOA",
"data": {
"accountId": 37774341,
"summonerId": 23638303,
"name": "Naughtlok",
"icon": 550,
"internalName": "naughtlok",
"level": 30
}
}
[body:Unirest\HttpResponse:private] => stdClass Object
(
[_] => stdClass Object
(
[APP_ID] => server_tracked
)
[success] => 1
[requestTime] => 2013-08-21T21:02:59-07:00
[shard] => North_America:YjNmMjE4YmVhZjgxN2M0ZGI0ZTU1YzQ0MWZiMzQ5MGJkMjFhMGRmOA
[data] => stdClass Object
(
[accountId] => 37774341
[summonerId] => 23638303
[name] => Naughtlok
[icon] => 550
[internalName] => naughtlok
[level] => 30
)
)
[headers:Unirest\HttpResponse:private] => Array
(
[content-type] => application/json; charset=utf-8
[date] => Thu, 22 Aug 2013 04:02:59 GMT
[server] => Apache-Coyote/1.1
[x-api-calls-remaining] => -1
[X-Mashape-Proxy-Response] => false
[X-Mashape-Version] => 3.1.1
[transfer-encoding] => chunked
[Connection] => keep-alive
)
)
关于我的任何指示都可以从“数据”中获得“Level”?
答案 0 :(得分:1)
Mashape发回一个响应对象,而不是一个数组。要访问对象的一部分,您需要使用php指向对象键 - 这是unirest.io上的相关部分:
响应参考
收到回复后,Unirest以对象的形式返回结果,此对象>应始终为每种语言提供与响应详细信息相同的密钥。
'code'
- HTTP响应状态代码(示例200
)
'headers
' - HTTP响应标头
'body'
- 适用的解析响应主体,例如JSON响应被解析为Objects / Associative Arrays。
'raw_body'
- 未解析的响应正文
因此,如果您正在执行print_r($response);
之类的操作来提供此功能,请执行echo $response -> raw_body;
,然后将其解析为JSON(或获取解析后的“正文”密钥)。
答案 1 :(得分:0)
使用print_r($ response);打印对象&看看有什么回应 例如:
<?php
require_once 'lib/Unirest.php';
// These code snippets use an open-source library. http://unirest.io/php
$response = Unirest::get("Your_URL",
//echo $response;
print_r($response);
答案 2 :(得分:0)
Unirest 2.0的发布有很多改进,包括设置custom JSON decode flags
的功能这使您可以更好地控制响应体类型解析方法(json_decode)
免责声明:我是unirest-php的作者,我在Mashape工作。