我正在做一个API到服务中的响应,象形文字来了,虽然在postman测试期间没有这样的东西
$client = new Client();
$client->setMethod('PUT');
$client->setUri($uri);
$client->setHeaders($headers);
$client->setRawBody(json_encode($body));
$response = $client->send();
$response = $response->getContent();
$headers = [
'Authorization' => "************************",
'Content-Type' => 'application/json'
];
我希望得到正确形式的json响应。
1条答案
按热度按时间dgiusagp1#
通过添加'Accept-Encoding' =〉'application/json'可以解决此问题