We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to delete session cookies?
I've tried .deleteAllVisibleCookies() but it doesn't seem to delete session cookies (Express).
.deleteAllVisibleCookies()
In fact I'm not sure if I can even retrieve the session cookie.
.getCookie() doesn't show connect.sid .deleteCookie('connect.sid', 'domain=localhost, path=/) doesn't work
.getCookie()
.deleteCookie('connect.sid', 'domain=localhost, path=/)
Oh it's an httpOnly cookie... anyway to remove it still?
The text was updated successfully, but these errors were encountered:
So the way I did it was
server.get '/delete', (req, res)-> req.sessionStore.clear() res.send(200) soda.open 'http://localhost:3000/delete'
Anyone know a better way? Please share, thank you!
Sorry, something went wrong.
No branches or pull requests
Is there a way to delete session cookies?
I've tried
.deleteAllVisibleCookies()
but it doesn't seem to delete session cookies (Express).In fact I'm not sure if I can even retrieve the session cookie.
.getCookie()
doesn't show connect.sid.deleteCookie('connect.sid', 'domain=localhost, path=/)
doesn't workOh it's an httpOnly cookie... anyway to remove it still?
The text was updated successfully, but these errors were encountered: