我想向 https 服务器发送 POST 请求。
$data = 'name=value&name1=value1';
$options = array(
'method' => 'POST',
'data' => $data,
'timeout' => 15,
'headers' => array('Content-Type' => 'application/x-www-form-urlencoded'),
);
$result = drupal_http_request('http://somewhere.com', $options);
我无法弄清楚在上面的 POST 示例代码中实现 https 选项。
谁能解释一下我该怎么做?我对使用 Drupal 进行 PHP 编码非常陌生,我绝对可以使用该指南。
我发现只需要在协议中设置它。所以我得到了这个代码。
$data = 'access_token=455754hhnaI&href=fb&template=You have people waiting to play with you, play now!';
$options = array(
'method' => 'POST',
'data' => $data,
'timeout' => 15,
'headers' => array('Content-Type' => 'application/x-www-form-urlencoded'),
);
$result = drupal_http_request('https://graph.facebook.com/1000721/notifications?', $options);
它仍然不起作用。如果我通过 Firefox 发布https://graph.facebook.com/1000080521/notifications?access_token=45575FpHfhnaI&href=fb&template=You have people waiting to play with you, play now!
它可以工作。
我可能没有在 Drupal 中正确构建请求。
我究竟做错了什么?我怎样才能让我的代码工作?