我注销后从浏览器中删除了cookie,并且所有内容都适用于Google Chrome浏览器,但是对于Mozilla Firefox cookie却没有删除。
我请求/ logout终结点,然后通过response.addCookie(<my-cookie>)
将cookie添加到HttpServletResponse,其中cookie是相同的,但maxAge =0。(我也尝试过不同的变体,例如exmaple的cookie值为null。帮忙)。我正在尝试先删除具有授权令牌的cookie,然后删除xsrf令牌的cookie,然后再请求原始cookie。
cookieToRemove.setMaxAge(0);
//here I set domain and path (path is "/", but the same is in cookie in browser, domain also is the same for cookie)
decorateCookie(cookieToRemove, domain);