需要带有 file_get_contents (PHP) 的 HTTP 500 响应正文
使用 file_get_contents 作为自定义 SOAP 实现的一部分来应用 SOAP 调用(我们尝试的所有库都无法使用 SOAP 1.2 正确执行基于 SSL + 证书的身份验证)。然而,困难且几乎没有记录的 API 通常会返回 500。响应正文中有错误详细信息,但 file_get_contents 似乎不允许访问它。 fopen 似乎也有同样的问题。
做什么?
最好不要使用 cURL,因为需要大量使用流上下文来进行身份验证。
Using file_get_contents as part of custom SOAP implementation to apply SOAP calls (ALL libraries that we tried would not do SSL + certificate based authentication with SOAP 1.2 correctly). However difficult and barely-documented API often returns 500. There are error details in response body, but file_get_contents doesn't appear to allow access to it. fopen seems to have the same issue.
What do?
Prefer not to go to cURL due to heavy use of stream contexts to get authentication working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以考虑nusoap。
不过,对于您的问题,如果您使用
ignore_errors
,它就会起作用。You might consider nusoap.
For your question though, it works if you use
ignore_errors
.