CodeStory/fluent-http

Probable bug in signout with CookieAuthFilter

Closed this issue · 0 comments

I think it dosn't get the session id in the right place into the cookie when signout. You should use readSessionIdInCookie().

CookieAuthFilter:117
String sessionId = context.cookies().value("sessionId");
to replace by
String sessionId = readSessionIdInCookie(context);