我有一个网站,我想将数据发布到。问题是当使用cakephp httpsocket功能时,设置自定义端口(例如8080)将导致端口位于URL的末尾(而不是主机名的末尾)。请参阅示例代码:
$notificationUrl = 'www.example.com/LotsController/sendWork';
$request = array(
'method' => 'POST',
'uri' => array(
'scheme' => 'http',
'host' => $notificationUrl,
'port' => 8080,
// 'user' => null,
// 'pass' => null,
// 'path' => null,
// 'query' => null,
// 'fragment' => null
),
// 'auth' => array(
// 'method' => 'Basic',
// 'user' => null,
// 'pass' => null
// ),
// 'version' => '1.1',
'body' => $jsonWithEncryptedData,
// 'line' => null,
// 'header' => array(
// 'Connection' => 'close',
// 'User-Agent' => 'CakePHP'
// ),
// 'raw' => null,
// 'redirect' => false,
// 'cookies' => array()
);
$HttpSocket = new HttpSocket( );
$HTTPPostResults = $HttpSocket->post( $notificationUrl, $jsonWithEncryptedData , $request );
返回的响应html代码(状态404)显示url cakephp httpsocket正在尝试连接到: http://www.example.com/LotsController/sendWork:8080(在浏览器中不起作用)
不应该是: http://www.example.com:8080/LotsController/sendWork(在浏览器中有效)
为什么cakephp将端口号放在URL的末尾?
我的设置: Ubuntu 14 Cakephp 2.5.3
答案 0 :(得分:1)
host是您要连接的URL的基本域
www.example.com
不是网址
www.example.com/LotsController/sendWork
您应该在路径中而不是在主机中包含其他信息