Open sepbehroozi opened 8 years ago
hey there in some responses headers we have multiple Set-Cookie headers. volley always consider first value of these type of headers :
Header h = new BasicHeader(header.getKey(), header.getValue().get(0));
My solution is that we shouldn't consider only first item of header.getValue(). we should merge all values in array with ;
header.getValue()
;
for more info about this bug and example see this
knock knock no one's here :|
Hi, man. Did you fix that?
Hey there Yes I've fixed that in a clone of this repository Here is the address :https://github.com/3pehrbehroozi/android-volley
Thx, man. I saw it)
hey there in some responses headers we have multiple Set-Cookie headers. volley always consider first value of these type of headers :
My solution is that we shouldn't consider only first item of
header.getValue()
. we should merge all values in array with;
for more info about this bug and example see this