fancy-napkin-38843
09/16/2022, 11:30 AMauthenticators:
- handler: cookie_session
- handler: anonymous
- handler: bearer_token
And whenever we make an unauthenticated request (without a session cookie), however containing ANY other cookie (such as a simple test=helloWorld
) it returns a 401 and ignores our anonymous
rule. If we remove all cookies and perform the same request, it works as intended and is handled as an anonymous
request.
Steps to reproduce can be setting these same authenticators rules and simply adding a cookie to the page (document.cookie = "test=helloWorld";
e.g.). Then calling any endpoint that has those rules will return a 401, even though the anonymous
handler is there.
Could someone have a look? Thank you!red-machine-69654
09/17/2022, 6:18 AMred-machine-69654
09/17/2022, 6:20 AMfancy-napkin-38843
09/19/2022, 11:35 AMfancy-napkin-38843
09/19/2022, 2:40 PManonymous
and the cookie_session
authenticators.gentle-bird-90474
09/28/2022, 8:25 AM