使用 HttpURLConnection 进行摘要式身份验证
我在 GAE 上托管我的 java 应用程序。我必须下载一些外部 RSS 页面并解析它。问题是外部站点需要摘要身份验证。有没有办法使用 HttpURLConnection< 进行摘要身份验证/a> 类。我无法使用 HTTPClient 因为 GAE JRE 白名单
预先感谢您的帮助
I am hosting my java application on GAE. I have to download some external RSS page and parse it. The problem is external site requires digest authentication. Is there any way to do digest authentication using HttpURLConnection class. I am not able to use HTTPClient as it is not mentioned in GAE JRE White List
Thanks beforehand for any help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看这个包装器;它允许在 Google App Engine 上使用 Java HttpClient。
更多信息请点击此处。
Have a look to this wrapper; it allows to use Java HttpClient on Google App Engine.
More info here.
您还可以使用 Jersey-Client,它与 gae 兼容并且比 HttpClient 容易得多:
You can also use Jersey-Client, it is gae compatible and much easier than HttpClient: