我正在尝试从需要身份验证的网站 Socialcast 获取内容。(首先我使用基本身份验证进行 HTTP Post,然后尝试 HTTP GET)。我尝试了几个代码,我收到“结果”:
emily@socialcast.com:demo Base64 编码的身份验证字符串:ZW1pbHlAc29jaWFsY2FzdC5jb206ZGVtbw==
* BEGIN
您正在被重定向。
结尾 *
这是 HTTP 基本身份验证的代码:
try {
String webPage = "http://demo.socialcast.com";
String name = "emily@socialcast.com";
String password = "demo";
String authString = name + ":" + password;
System.out.println("auth string: " + authString);
byte[] authEncBytes = Base64.encodeBase64(authString.getBytes());
String authStringEnc = new String(authEncBytes);
System.out.println("Base64 encoded auth string: " + authStringEnc);
URL url = new URL(webPage);
URLConnection urlConnection = url.openConnection();
urlConnection.setRequestProperty("Authorization", "Basic " + authStringEnc);
InputStream is = urlConnection.getInputStream();
InputStreamReader isr = new InputStreamReader(is);
int numCharsRead;
char[] charArray = new char[1024];
StringBuffer sb = new StringBuffer();
while ((numCharsRead = isr.read(charArray)) > 0) {
sb.append(charArray, 0, numCharsRead);
}
String result = sb.toString();
System.out.println("*** BEGIN ***");
System.out.println(result);
System.out.println("*** END ***");
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
但是,当我之后尝试执行 GET 时,它说未经授权。凭据是 emily@socialcast.com/demo - 目前由 Socialcast Dev 提供,因为我也无法访问我自己的 Socialcast 实例。
这段代码错了吗?我怎样才能正确地做到这一点?顺便说一句,我正在使用 HttpClient 4.x。