我有一个 PBX 服务器(Asterisk 1.8),我可以通过请求中的一些 GET 变量来管理呼叫。我的问题是我需要先登录到服务器。完成后,我想保存一个 cookie,然后将其与我的下一个请求一起发送以进行验证。
我有当前使用 cURL 工作的代码:
public function authenticate(){
$temp_dir = sys_get_temp_dir();
$ckfile = tempnam($temp_dir, "ast");
$auth_url = $this->ast_link."?action=login&username=asterisk_http&secret=*****";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $auth_url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt ($ch, CURLOPT_COOKIEJAR, $ckfile);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$auth_response = curl_exec($ch);
curl_close($ch);
$this->auth_cookie = $ckfile;
return $ckfile;
}
//$call contains id, patcode, phone_number, call_type
public function makeCall($overload, $call, $exten, $user = NULL){
set_time_limit(0);
if(!$this->auth_cookie) $this->authenticate();
//http://blah.server/asterisk/rawman?action=originate&channel=$somechannel
$call_url = $this->generateCallUrl($overload, $call, $exten, $user);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $call_url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_FAILONERROR, 1);
curl_setopt($ch, CURLOPT_COOKIEFILE, $this->auth_cookie);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
不幸的是,cURL 等待来自服务器的响应,这仅在调用结束时发生。因此,我无法同时拨打多个电话。
我如何在 PHP 中使用 HttpRequest 以与 cURL 相同的方式发送 cookie 以及请求?我对这背后的网络机制有点不熟悉,所以请原谅我对此一无所知。
TL;DR:如何与 HttpRequest 一起发送 cookie