使用 guzzle 6 发送 (POST) xml 的正确方法

Posted

技术标签:

【中文标题】使用 guzzle 6 发送 (POST) xml 的正确方法【英文标题】:Proper way to send (POST) xml with guzzle 6 【发布时间】:2016-04-16 01:21:51 【问题描述】:

我想用 guzzle 发送一个 xml 文件来执行一个帖子。我没有找到示例。

到目前为止我所做的是:

$xml2=simplexml_load_string($xml) or die("Error: Cannot create object");
use    GuzzleHttp\Client;
use GuzzleHttp\Psr7\Request;
$client = new Client();
//
$request = new Request('POST', $uri, [ 'body'=>$xml]);
$response = $client->send($request);
 //
//$code = $response->getStatusCode(); // 200
//$reason = $response->getReasonPhrase(); // OK
 //
 echo $response->getBody();

无论我尝试什么,我都会返回错误 -1,这意味着 xml 无效。 我发送的 XML 通过了在线验证并且有效 %100

请帮忙。

【问题讨论】:

【参考方案1】:

尝试发布如下数据:

$xml2=simplexml_load_string($xml) or die("Error: Cannot create object");
use    GuzzleHttp\Client;
use GuzzleHttp\Psr7\Request;
$client = new Client();
//
$request = new Request('POST', $uri, [
'form_params' => [
        'xml' => $xml,
    ]
]);
$response = $client->send($request);
//$code = $response->getStatusCode(); // 200
//$reason = $response->getReasonPhrase(); // OK
echo $response->getBody();

【讨论】:

感谢您的建议,但它不起作用。又是同样的反应。是否有任何文档详细描述了选项对象?【参考方案2】:

经过一些实验,我想通了。这是我的解决方案,以防有人走到死胡同。

$request = new Request(
    'POST', 
    $uri,
    ['Content-Type' => 'text/xml; charset=UTF8'],
    $xml
);

【讨论】:

【参考方案3】:

如果你想使用 post 方法发送 xml,这里是一个例子:

$guzzle->post($url, ['body' => $xmlContent]);

【讨论】:

【参考方案4】:

这就是在 Guzzle 6 上对我有用的方法:

// configure options
$options = [
    'headers' => [
        'Content-Type' => 'text/xml; charset=UTF8',
    ],
    'body' => $xml,
];

$response = $client->request('POST', $url, $options);

【讨论】:

【参考方案5】:

您可以通过以下方式做到这一点

$xml_body = 'Your xml body';
$request_uri = 'your uri'
$client = new Client();
$response = $client->request('POST', $request_uri, [
              'headers' => [
                 'Content-Type' => 'text/xml'
               ],
              'body'   => $xml_body
            ]);

【讨论】:

【参考方案6】:

我发现我还必须修剪正文 - 正文中有一个前导换行符,Guzzle 拒绝发送正文,直到我修剪它。

【讨论】:

以上是关于使用 guzzle 6 发送 (POST) xml 的正确方法的主要内容,如果未能解决你的问题,请参考以下文章

Guzzlehttp - 如何从 Guzzle 6 获取响应的正文?

如何使用 Guzzlehttp/guzzle 6 发送 Cookie?

Guzzle 请求:发布正文数据

Guzzle同步发送请求

guzzle ver 6 post 方法不起作用

PHP 使用 Guzzle 执行 HTTP 请求