You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
httpclient includes a fix for a bug in Android's HttpURLConnection before Gingerbread such that headers are converted to lowercase. However, HttpRequestBuilder's cookie parsing does not handle such cases, where the cookies header is "set-cookies" instead of "Set-Cookies". (The returned HttpResponse has them properly set as "Set-Cookies" header, but then the parsing into in-memory cookies already failed.)
The text was updated successfully, but these errors were encountered:
erickok
added a commit
to erickok/httpclient
that referenced
this issue
Apr 3, 2013
httpclient includes a fix for a bug in Android's
HttpURLConnection
before Gingerbread such that headers are converted to lowercase. However,HttpRequestBuilder
's cookie parsing does not handle such cases, where the cookies header is"set-cookies"
instead of"Set-Cookies"
. (The returnedHttpResponse
has them properly set as"Set-Cookies"
header, but then the parsing into in-memory cookies already failed.)The text was updated successfully, but these errors were encountered: