Android中的HttpClient身份验证

我试图从需要完全身份验证的android访问Web服务.我为此使用基本的HTTP身份验证.

我试过设置UserNamePasswordCredentials以及在HttpGet请求中设置标头,但都可以.请告诉我我在做什么错.

我用于在HttpGet请求中设置标头的代码:

HttpGet requestLogin = new HttpGet(url);               
requestLogin.addHeader("Authorization", "Basic " + Base64.encodeToString((username+":"+password).getBytes(), Base64.NO_WRAP));

我用来设置UserNamePassword凭据的代码:

DefaultHttpClient httpClient = new DefaultHttpClient(mgr, tempClient.getParams());
httpClient.getCredentialsProvider().setCredentials(
                   AuthScope.ANY,
                    new UsernamePasswordCredentials(username,password));

这是我在使用此代码时遇到的异常:

05-26 17:21:22.234: E/res(1651): <html><head><title>Apache Tomcat/6.0.35 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 401 - Bad credentials</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>Bad credentials</u></p><p><b>description</b> <u>This request requires HTTP authentication (Bad credentials).</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/6.0.35</h3></body></html>

当我在浏览器上使用这些相同的凭据时,它可以工作.因此,凭据不是不正确的.请让我知道我在做什么错.我完全陷入其中.

提前致谢.

解决方法:

我刚刚尝试了手动的HTTP标头变体,它应该与Base64.Default标志一起使用:

requestLogin.addHeader("Authorization", "Basic " +
    Base64.encodeToString((username+":"+password).getBytes(), Base64.DEFAULT));
上一篇:java-通过Google plus在Android应用中进行用户身份验证


下一篇:我如何将Tweepy OAuth用于Twitter的新API?