SSL 表单 POST 从一个站点到另一个站点
我正在尝试安全地从一个网站到另一个网站进行发布。我不想尝试自己进行加密或散列,而是使用 SSL。是否可以使用 SSL 将表单从一个站点发送到另一个站点,从而完全安全地传输用户信息?
I am attempting to do a POST securely from one website to another. Instead of trying to do our own encryption or hashing I would like to use SSL. Is it possible to do a form post from one site to another using SSL that would be completely secure for transferring the user information?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法使用 POST 将用户的浏览器重定向到另一个站点(重定向将切换到 GET),但您当然可以让一台服务器通过 SSL 向另一个站点发起 POST。
You can't redirect the user's browser to another site with POST (the redirect will switch to a GET), but you can certainly have one server initiate a POST to another site over SSL.
一个简单的表单帖子就可以了。
A simple form post should work.