Disable cookies #389
krlosgilson
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
After user authentication, performing some test requests by Postman, I noticed that a cookie is recorded: _my_app_session. This is not being good, because even after disconnecting the user and logged in again, even with a new token generated, the token from the first login is still accessible due to the cookie that is stored. Is it some kind of configuration in the gem that must be done? I configured devise like this:
config.skip_session_storage = [:http_auth, :token_auth]
but I don't think it's for that.
Beta Was this translation helpful? Give feedback.
All reactions