使用 PHP 的 Zend XML RPC 客户端进行 HTTP 身份验证
我在 PHP 应用程序中使用 Zend 库的 XML RPC 客户端通过 XML RPC 从另一台服务器提取数据。然而,其他服务器正在使用 HTTP 基本身份验证。如何告诉 XMLRPC 客户端对请求使用身份验证?
I am using the Zend library's XML RPC Client in a PHP application to pull data from another server over XML RPC. However the other server is using HTTP basic authentication. How can I tell the XMLRPC client to use authentication for the requests?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Zend_XmlRpc_Client
内部使用 < a href="http://framework.zend.com/manual/en/zend.http.client.advanced.html" rel="nofollow noreferrer">Zend_Http_Client
处理基本的 HTTP 通信。您可以使用以下命令检索 HTTP 客户端:然后您可以设置需要的身份验证参数:
Zend_XmlRpc_Client
internally uses aZend_Http_Client
which handles the basic HTTP communication. You can retrieve the HTTP client with:and then you can set the requires authentication parameters: