我要求应用程序必须通过 HTTPS POST 进行 REST API 调用。我是 cakephp 的新手。我在想是否可以使用 httpsocket 进行 https 调用。

我很感激任何帮助。

谢谢。

最佳答案

如果您启用了 PHP 的 Curl 模块:

<?php
// create a new cURL resource
$ch = curl_init();

$data = array('Your' => 'Data');

// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));

// grab URL and pass it to the browser
$result = curl_exec($ch);

// close cURL resource, and free up system resources
curl_close($ch);

print_r($result); // output result for all the kings
?>

关于php - 如何在 Cakephp 中发出 https 发布请求,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4254645/

10-15 10:43