来自端点的JSON API响应检索值和解码

时间:2017-06-16 03:38:31

标签: php json wordpress api

您好,

端点发送

*响应* WP_HTTP_Requests_Response对象 ( [回复:受保护] => Requests_Response对象 ( [body] => {“状态”:”成功”,”结果”:” 112“,”代码”:200}

我试图得到“结果:”112“

有没有办法可以检索它?

谢谢。

1 个答案:

答案 0 :(得分:1)

请参阅此处的文档:https://developer.wordpress.org/reference/classes/wp_http_requests_response/

假设您收到的响应(WP_HTTP_Requests_Response)存储在名为$ response的变量中,您应该这样做:

$response_data = json_decode($response->get_response_object()->body);
$result = $response_data->result; // this is the result you want