验证对等点与发送 https 帖子分开
我需要将 https 帖子发送到外部服务器。最佳实践是首先验证外部对等方,然后在单独的请求中发送发布数据吗?或者可以要求验证对等方并在同一请求中发送发布数据吗?我正在使用 pycurl 如果有帮助的话。感谢您的任何帮助。
I need to send an https post to an external server. Is it best practice to first verify the external peer and then afterwards in a separate request to send the post data? Or is it ok to ask to verify the peer and send the post data in the same request? I'm using pycurl if that helps any. Thanks for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 CURL 文档:
SSL 协商阶段发生在发送任何数据之前,因此如果外部对等方无法验证,则连接将在发送任何数据之前失败。应该可以将所有这些作为一个请求来完成。
From the CURL docs:
The SSL negotiation phase happens before any data is sent, so if the external peer fails to verify, the connection will fail before any data is sent. It should be OK to do it all as one request.