PHP通过curl方式传参给java接口报错:JSONObject["xxx"] is not a JSONObject

PHP 对变量进行 JSON 编码 (json_encode()) 返回字符串,而接口参数需要 json 对象。

{"code":0,"data":{"isSrvAccount":0},"mccode":0,"errObj":{},"reqId":"S1B6Mt01w","seqId":"d4d7435b-75ca-962e-17b6-cbc478da83d8"}

解决办法:将变量 json_decode() 后即可。

例:

// 转成JSON对象
$test = json_decode($test);

print_r 打印

stdClass Object
(
    [code] => 0
    [data] => stdClass Object
        (
            [isSrvAccount] => 0
        )

    [mccode] => 0
    [errObj] => stdClass Object
        (
        )

    [reqId] => S1B6Mt01w
    [seqId] => d4d7435b-75ca-962e-17b6-cbc478da83d8
)

如果是 curl 方式的话记得设置 CURLOPT_HTTPHEADER

// 设置HTTP头
curl_setopt ( $curl, CURLOPT_HTTPHEADER, ["Content-Type: application/json"] );

相关文章:

  • 2021-12-28
  • 2022-01-01
  • 2021-06-25
  • 2022-12-23
  • 2021-08-24
  • 2022-01-28
  • 2021-07-26
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
  • 2021-12-26
相关资源
相似解决方案