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
Cookie mi=a8f64fbd22f8f70afee8a48c2c18f202
This is my request cookie data. @OverRide
synchronized public List loadForRequest(HttpUrl url) {
List cookiesToRemove = new ArrayList<>();
List validCookies = new ArrayList<>();
for (Iterator<Cookie> it = cache.iterator(); it.hasNext(); ) {
Cookie currentCookie = it.next();
if (isCookieExpired(currentCookie)) {
cookiesToRemove.add(currentCookie);
it.remove();
} else if (currentCookie.matches(url)) {
validCookies.add(currentCookie);
}
}
persistor.removeAll(cookiesToRemove);
return validCookies;
}
I use your method for add request cookie. But there is only one param when I request server,and in the debug I had ensure the return validCookies is a unbroken cookie.
It gives me a headache,Have you met this situation???
Please help me!!!
The text was updated successfully, but these errors were encountered:
Cookie mi=a8f64fbd22f8f70afee8a48c2c18f202
This is my request cookie data.
@OverRide
synchronized public List loadForRequest(HttpUrl url) {
List cookiesToRemove = new ArrayList<>();
List validCookies = new ArrayList<>();
I use your method for add request cookie. But there is only one param when I request server,and in the debug I had ensure the return validCookies is a unbroken cookie.
It gives me a headache,Have you met this situation???
Please help me!!!
The text was updated successfully, but these errors were encountered: