需要带有 file_get_contents (PHP) 的 HTTP 500 响应正文

发布于 2024-11-08 03:18:49 字数 243 浏览 0 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮华 2024-11-15 03:18:49

您可以考虑nusoap

不过,对于您的问题,如果您使用 ignore_errors ,它就会起作用。

$context = stream_context_create(array(
    'http' => array(
        'ignore_errors' => true
     )
));

$contents = file_get_contents($url, false, $context);

You might consider nusoap.

For your question though, it works if you use ignore_errors.

$context = stream_context_create(array(
    'http' => array(
        'ignore_errors' => true
     )
));

$contents = file_get_contents($url, false, $context);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文