您好我试图将一些数据提供给主服务器并使用$ HttpSocket->请求。问题是我没有从中获取任何数据。
App::import('Core', 'HttpSocket');
$HttpSocket = new HttpSocket();
$request = array('auth' => array('username' =>'xxxx',
'password' => 'xxxx',
'method' => 'Basic'),
'uri' => "http://test.com/xxxx/xxxx/{$xx}");
$result = $HttpSocket->request($request);
debug($HttpSocket->response);
debug($result);
此代码中的任何问题? 任何建议将不胜感激,谢谢!干杯!