httpclient提示Cookie rejected: violates RFC 2109: domain must start with a dot
使用httpclient时发生如下告警信息:
WARN - HttpMethodBase.processResponseHeaders(1505) | Cookie rejected: "$Version=0; U_TRS2=00000061.27163dd.4dfc994f.29e14b4d; $Domain=.sina.com.cn; $Path=/". Illegal domain attribute ".sina.com.cn". Domain of origin: "weibo.com"
解决方法:
需要给postMethod或者getMethod的参数:http.protocol.cookie-policy设置值,代码如下:
postMethod.getParams().setParameter("http.protocol.cookie-policy",CookiePolicy.BROWSER_COMPATIBILITY); getMethod.getParams().setParameter("http.protocol.cookie-policy",CookiePolicy.BROWSER_COMPATIBILITY);
知识只有共享才能传播,才能推崇出新的知识,才能学到更多,这里写的每一篇文字/博客,基本都是从网上查询了一下资料然后记录下来,也有些是原滋原味搬了过来,也有时加了一些自己的想法