我编写了以下 HttpClient 代码,它没有导致将Authorization
标头发送到服务器:
public static void main(String[] args) {
var client = HttpClient.newBuilder()
.authenticator(new Authenticator() {
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("username", "password".toCharArray());
}
})
.version(HttpClient.Version.HTTP_1_1)
.build();
var request = HttpRequest.newBuilder()
.uri("https://service-that-needs-auth.example/")
.build();
client.sendAsync(request, HttpResponse.BodyHandlers.ofString())
.thenApply(HttpResponse::body)
.thenAccept(System.out::println)
.join();
}
我从正在调用的服务中收到 HTTP 401 错误。就我而言,它是 Atlassian Jira Cloud API。
我已经确认getPasswordAuthentication()
HttpClient 没有调用我的方法。
为什么它不起作用,我应该怎么做?