如何在 Cakephp 中发出 https post 请求
我有一个要求,应用程序必须通过 HTTPS POST 进行 REST API 调用。我是 cakephp 的新手。我在想是否可以使用 httpsocket 进行 https 调用。
我很感激任何帮助。
谢谢。
I have requirement where app has to make REST API calls over HTTPS POST. I am new to cakephp. I was thinking if I could do https calls using httpsocket.
I appreciate any help.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用其中任何一个
CAKEPHP SOCKET
CURL
JAVASCRIPT
如果您希望在客户端完成此操作,
You can use any of these
CAKEPHP SOCKET
CURL
JAVASCRIPT
if you want this to done at client side如果您启用了 PHP 的 Curl 模块:
If you have PHP's Curl module enabled:
在 Cake 2.x 上对我不起作用,但
确实有效。这里有更多关于 HttpSocket http://book.cakephp.org/2.0 /en/core-utility-libraries/httpsocket.html
did not work for me on Cake 2.x, but
did work. Here's more about HttpSocket http://book.cakephp.org/2.0/en/core-utility-libraries/httpsocket.html