需要将压缩(gzip)正文发送到服务器
例如
protected function postOrPutData($method, $data, $type, $uri = null, array $options = [])
{
$requestBody = $this->serializer->serialize($data, 'json');
$request = new Request($method, $uri, [], $requestBody);
$response = $this->httpClient->send($request, $options);
return $this->serializer->deserialize((string) $response->getBody(), $type, 'json');
}