通过 HTTP 身份验证将凭据传递到服务器并获取响应的完整指南
所以我们知道如何进行http get 和post 连接。 http://exampledepot.com/egs/java.net/pkg.html 我们希望将凭据(uname、passwd)传递到任何 Web 服务器以访问 url 或获取响应。 而且我们不能将它作为 post 参数传递。 所以看看这个非常简单的代码,它完成了这一切。
So we know how to do http get and post connections.
http://exampledepot.com/egs/java.net/pkg.html
And we want to pass credentials(uname,passwd) to any web server to access the url or get the response.
And we can't pass it as post parameters.
So have a look @ this very simple code which does it all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了对凭据进行编码,我使用了一个名为“BasicAuth.java”的简单外部类,您可以将其添加到您的项目中。
BasicAuth.java
To encode the credentials I am using a simple external class named "BasicAuth.java" which u can just add in to your project.
BasicAuth.java