我使用Apache HttpComponents访问Web服务,并且不知道如何在请求中设置用户/密码,这是我的代码:
URI url = new URI(query);
HttpGet httpget = new HttpGet(url);
DefaultHttpClient httpclient = new DefaultHttpClient();
Credentials defaultcreds = new UsernamePasswordCredentials("test", "test");
httpclient.getCredentialsProvider().setCredentials(new AuthScope(HOST, AuthScope.ANY_PORT), defaultcreds);
HttpResponse response = httpclient.execute(httpget);
...
但仍然有401未经授权的错误。
HTTP/1.1 401 Unauthorized [Server: Apache-Coyote/1.1, Pragma: No-cache, Cache-Control: no-cache, Expires: Wed, 31 Dec 1969 16:00:00 PST, WWW-Authenticate: Basic realm="MemoryRealm", Content-Type: text/html;charset=utf-8, Content-Length: 954, Date: Wed, 04 Apr 2012 02:28:49 GMT]
我不确定它是否是设置用户/密码的正确方法?谁有人可以帮忙?感谢。
答案 0 :(得分:5)
我认为你走在正确的轨道上。也许你应该检查你的用户凭证,因为http error response可能意味着用户名/密码不正确,或者用户没有访问资源的权限。我有以下代码,我做了基本的http身份验证,它工作正常。
import org.apache.http.HttpResponse;
import org.apache.http.auth.AuthScope;
import org.apache.http.auth.UsernamePasswordCredentials;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
public class Authentication
{
public static void main(String[] args)
{
DefaultHttpClient dhttpclient = new DefaultHttpClient();
String username = "abc";
String password = "def";
String host = "abc.example.com";
String uri = "http://abc.example.com/protected";
try
{
dhttpclient.getCredentialsProvider().setCredentials(new AuthScope(host, AuthScope.ANY_PORT), new UsernamePasswordCredentials(username, password));
HttpGet dhttpget = new HttpGet(uri);
System.out.println("executing request " + dhttpget.getRequestLine());
HttpResponse dresponse = dhttpclient.execute(dhttpget);
System.out.println(dresponse.getStatusLine() );
}
catch (Exception e)
{
e.printStackTrace();
}
finally
{
dhttpclient.getConnectionManager().shutdown();
}
}
}