projectName $newProject->-6ren">
gpt4 book ai didi

php - 在 Guzzle 中复制 cURL 帖子

转载 作者:行者123 更新时间:2023-12-03 02:07:53 24 4
gpt4 key购买 nike

我使用 cURL 将数据发布到 API,但决定切换到 Guzzle。使用 cURL 我会这样做

$data = 
"<Lead>
<Name>$newProject->projectName</Name>
<Description>$newProject->projectName</Description>
<EstimatedValue>$newProject->projectValue</EstimatedValue>
</Lead>";

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.someurl.com/lead.api/add?apiKey=12345&accountKey=12345");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: text/xml',
'Content-Length: ' . strlen($data)
));

$output = curl_exec($ch);

这就是我目前正在尝试使用 Guzzle 实现的功能。

$data = "<Lead>
<Name>$campaign->campaignName</Name>
<Description>$campaign->campaignName</Description>
<EstimatedValue>$campaign->campaignValue</EstimatedValue>
</Lead>";

$client = new GuzzleHttp\Client();
$req = $client->request('POST', 'https://somurl', [
'body' => $data,
'headers' => [
'Content-Type' => 'text/xml',
'Content-Length' => strlen($data),
]
]);
$res = $client->send($req);
$output = $res->getBody()->getContents();

我面临的第一个问题是,它指出请求的参数 3 需要是一个数组,而我向它传递一个字符串。很好,但是我怎样才能发送我的 xml block 呢?另外,我认为我可能错误地设置了标题?

我浏览了文档,发现参数 3 需要是一个数组,但我不知道如何发布 XML 字符串。

任何建议表示赞赏。

谢谢

最佳答案

您可以使用“body”参数创建一个数组:

$client->request('POST', 'http://whatever', ['body' => $data]);

了解更多信息:http://docs.guzzlephp.org/en/latest/quickstart.html?highlight=post#post-form-requests

要设置标题,您可以执行以下操作:

$response = $client->request('POST', 'http://whatever', [
'body' => $data,
'headers' => [
'Content-Type' => 'text/xml',
'Content-Length' => strlen($data),
]
]);
$output = $response->getBody()->getContents();

了解更多信息:http://docs.guzzlephp.org/en/latest/request-options.html#headers

关于php - 在 Guzzle 中复制 cURL 帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38933474/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com