使用 HTTP 基本身份验证的 XmlSlurper.parse(uri)

发布于 2024-10-16 05:15:37 字数 364 浏览 2 评论 0原文

我需要从 XML-RPC Web 服务获取数据。

new XmlSlurper().parse("http://host/service") 工作正常,但现在我有一个需要基本 HTTP 身份验证的特定服务。

如何为 parse() 方法设置用户名和密码,或修改请求的 HTTP 标头?

使用 http://username:password@host/service 没有帮助 - 我仍然收到 java.io.IOException: Server returned HTTP response code: 401 for URL 异常。

谢谢

I need to grab a data from XML-RPC web-service.

new XmlSlurper().parse("http://host/service") works fine, but now I have a particular service that requires basic HTTP authentication.

How can I set username and password for parse() method, or modify HTTP headers of the request?

Using http://username:password@host/service doesn't help - I still get java.io.IOException: Server returned HTTP response code: 401 for URL exception.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

烟酒忠诚 2024-10-23 05:15:37

我发现这里代码可能有帮助?

根据您的情况编辑此代码,我们得到:

def addr       = "http://host/service"
def authString = "username:password".getBytes().encodeBase64().toString()

def conn = addr.toURL().openConnection()
conn.setRequestProperty( "Authorization", "Basic ${authString}" )
if( conn.responseCode == 200 ) {
  def feed = new XmlSlurper().parseText( conn.content.text )

  // Work with the xml document

} else {
  println "Something bad happened."
  println "${conn.responseCode}: ${conn.responseMessage}" 
}

I found this code over here which might help?

Editing this code to your situation, we get:

def addr       = "http://host/service"
def authString = "username:password".getBytes().encodeBase64().toString()

def conn = addr.toURL().openConnection()
conn.setRequestProperty( "Authorization", "Basic ${authString}" )
if( conn.responseCode == 200 ) {
  def feed = new XmlSlurper().parseText( conn.content.text )

  // Work with the xml document

} else {
  println "Something bad happened."
  println "${conn.responseCode}: ${conn.responseMessage}" 
}
孤独岁月 2024-10-23 05:15:37

这对您有用

请记住使用它而不是上面提到的“def authString”:

def authString  = "${usr}:${pwd}".getBytes().encodeBase64().toString()

This will work for you

Please remember to use this instead of the 'def authString' mentioned above:

def authString  = "${usr}:${pwd}".getBytes().encodeBase64().toString()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文