在我的 android 应用程序中,在发布请求后,我得到了这样的 cookie
HttpResponse httpResponse = httpClient.execute(httpPost);
String cookie = httpResponse.getFirstHeader("Set-Cookie").getValue();
当我在 LogCat 中打印 cookie 的值时,它的值是 PHPSESSID=150edfn1mmr4grmip6pd4h5pv6; path=/
但是,当我通过工具或在线网站(如 hurl.it)发送发布请求时,返回的 cookie 是 PHPSESSID=150edfn1mmr4grmip6pd4h5pv6; path=/, abtesting=0
为什么 httpResponse.getFirstHeader("Set-Cookie").getValue() 返回缺少数据?提前致谢