Http客户端警告:Cookie被拒绝:非法域属性
2022-09-01 18:09:10
我使用的是 HttpClient 最新版本 (4.x)。现在我正在尝试做一个GET请求。我刚刚发布了一个获取请求。
这是我的代码;
public class Poster {
static boolean routing1 = true, routing2 = true;
static int counter1 = 0, counter2 = 0;
DefaultHttpClient oHtp = null;
HttpGet oHGet = null;
HttpResponse oHRes = null;
private void test(String fullAddress) throws Exception {
oHtp = new DefaultHttpClient();
oHGet = new HttpGet(fullAddress);
HttpResponse response = oHtp.execute(oHGet);
System.out.print(response.getStatusLine());
HttpEntity entity = response.getEntity();
if (entity != null) {
entity = new BufferedHttpEntity(entity);
// System.out.println(EntityUtils.toString(entity));
System.out.print("\t entity is retrieved... ");
}
oHtp.getConnectionManager().shutdown();
}
}
我只是很好地执行它。首先是
new Poster().test("http://123.xl.co.id/profile.php");
第二个是
new Poster().test("http://goklik.co.id/");
是的,只有第二个....我得到了这个错误消息;
Sep 18, 2011 10:11:30 AM org.apache.http.client.protocol.ResponseProcessCookies processCookie 警告: Cookie 被拒绝: “[version: 0][name: CookiePst][value: 0149=xwGHF7HYDHLHQ84Isp/eSy9vu+Xq6cT12wxg1A==][域: .mcore.com][path: /][到期日: Sun Sep 18 10:38:59 ICT 2011]”。非法域属性“mcore.com”。原产地:“goklik.co.id”
我意识到这里涉及Cookie。但我不明白警告是什么意思。我也不知道如何解决它(Cookie没有被拒绝)。希望有一点光能让我从你们身上清除我的思想......:D