我必须做HTTP POST, authenticated with the key
。我有钥匙和我的钥匙。
但是我得到了400条响应代码,即错误的请求错误。
我的代码是:
Authenticator.setDefault(new Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("sixxxxxxxx","xxxxxxxxxTGh7fYbA:xxxxxxoRtGnOIb_vno1wQ".toCharArray());
}
});
我发现这是用户名和密码。但我想用特定的密钥进行身份验证
怎么做?
由于