I have a node.js server that exposes an authentication api (a user submits a login request and the server sets a httpOnly cookie as a token). The problem is that the cookie is rejected because it must have the attributes SameSite=None and Secure.
SameSite=None
Secure
I tried setting these attributes but they obviously didn't work because I must have a HTTPS connection.
HTTPS
Setting a HTTPS server and client seems too much for a dev environment, is there any way to enable these thrid party cookies?
1.4m articles
1.4m replys
5 comments
57.0k users