访问 RESTful Web 服务时出现未经授权的错误。我的示例程序如下所示。
public static void main(String[] args){
// Use apache commons-httpclient to create the request/response
HttpClient client = new HttpClient();
Credentials defaultcreds = new UsernamePasswordCredentials("aaa", "cdefg");
client.getState().setCredentials(AuthScope.ANY, defaultcreds);
GetMethod method = new GetMethod(
"http://localhost:8080/userService/usersByID/1234");
try {
client.executeMethod(method);
InputStream in = method.getResponseBodyAsStream();
// Use dom4j to parse the response and print nicely to the output stream
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
StringBuilder out = new StringBuilder();
String line;
while ((line = reader.readLine()) != null) {
out.append(line);
}
System.out.println(out.toString());
} catch (IOException e) {
e.printStackTrace();
}
}
我的凭据是正确的。我的 Web 服务将使用基本 Http 身份验证。
我对认证范围有疑问。
client.getState().setCredentials(AuthScope.ANY, defaultcreds);
我的凭据是正确的。
任何人都可以帮助解决这个问题。
谢谢。