将此 cURL 转换为 Guzzle
Posted
技术标签:
【中文标题】将此 cURL 转换为 Guzzle【英文标题】:Converting this cURL for Guzzle 【发布时间】:2013-10-30 17:01:50 【问题描述】:我已尝试通读 Guzzle 文档,但无法解决这个问题。
我想使用 Guzzle 而不是 cURL 来处理以下内容:
protected $url = 'https://secure.abcdef.com/cgi/xml_request_server.php';
$xml = "<ABCRequest>\n";
$xml .= "<Authentication>\n";
$xml .= "<ABLogin>$this->gwlogin</ABLogin>\n";
$xml .= "<ABKey>$this->gwkey</ABKey>\n";
$xml .= "</Authentication>\n";
$xml .= "<Request>\n";
$xml .= "<RequestType>SearchABC</RequestType>\n";
$xml .= "</Request>\n";
$xml .= "</ABCRequest>\n";
$header = "POST $this->url HTTP/1.1\n";
$header .= "Host: domain.com\n";
$header .= "Content-Length: ".strlen($xml)."\n";
$header .= "Content-Type: text/xml; charset=UTF8\n";
$header .= "Connection: close; Keep-Alive\n\n";
$header .= $xml;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->url);
curl_setopt($ch, CURLOPT_TIMEOUT, 120);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $header);
$response = curl_exec($ch);
curl_close($ch);
我试过了,但我还是新手……:
$client = new Client($this->url);
$response = $client->get($xml);
【问题讨论】:
除了您已经得到的答案之外,您可能会发现了解 PHP 中的 HEREDOC 类型的字符串很有用:php.net/… 【参考方案1】:您可以使用Client::post()
magic method 创建一个HTTP POST 请求:
$client = new Client($this->url);
$request = $client->post(
'',
['Content-Type' => 'text/xml; charset=UTF8'],
$xml,
['timeout' => 120]
);
$response = $request->send()->xml();;
【讨论】:
完美。我稍作修改以获得 xml: $request = $this->client->post('', array(), $xml); $response = $request->send()->xml(); 我认为这个示例没有涵盖 120 秒的超时设置,并且它没有解决请求正文中的内容类型和字符集编码使用。 @hakre 尝试更新一个,并阅读文档 - guzzlephp.org/http-client/… 这里是示例以上是关于将此 cURL 转换为 Guzzle的主要内容,如果未能解决你的问题,请参考以下文章
将 paypal curl 获取访问令牌请求转换为 guzzle
如何使用Curl将这个mailchimp API请求转换为使用PHP的Guzzle?
将 Postman 请求转换为 guzzle 或其他 PHP HTTP 客户端
将 JSON 数据从 API 转换为数组并在 Laravel 和 Guzzle HTTP Client 中分别显示?