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
nitcorn cookies are assigned by path. This cause some issues when tracking sessions
In the following example, the 3 GET cause the creation of 3 distinct sessions
Then, the next GET that revisits foo is given a different session (the one of / is used, but it seems there is some randomness)
example: https://gist.github.com/privat/e769dad16423cfcd3c921d603496107e
This cause sessions to be lost and external authentification with a redirect (like github oauth) to fail
The text was updated successfully, but these errors were encountered:
No branches or pull requests
nitcorn cookies are assigned by path. This cause some issues when tracking sessions
In the following example, the 3 GET cause the creation of 3 distinct sessions
Then, the next GET that revisits foo is given a different session (the one of / is used, but it seems there is some randomness)
example: https://gist.github.com/privat/e769dad16423cfcd3c921d603496107e
This cause sessions to be lost and external authentification with a redirect (like github oauth) to fail
The text was updated successfully, but these errors were encountered: