Die folgende Warnung wird in der Konsole angezeigt, obwohl ich in meiner Express-Anwendung die folgenden Einstellungen vorgenommen habe. Hat jemand diesen Fehler schon einmal gesehen? Meine Suche brachte mich zu https://github.com/expressjs/express/issues/3095
Ich benutze auch Express: 4.17.1
let COOKIE_OPTIONS = { httpOnly: true, sameSite: 'None', secure: true };
A cookie associated with a cross-site resource at http://MYURL.URL was set
without the `SameSite` attribute. A future release of Chrome will only deliver
cookies with cross-site requests if they are set with `SameSite=None` and
`Secure`. You can review cookies in developer tools under
Application>Storage>Cookies and see more details at
https://www.chromestatus.com/feature/5088147346030592 and
https://www.chromestatus.com/feature/5633521622188032.
Wenn ich eine Anfrage mit Insomia (Postman) mache, sehe ich Folgendes
access_token=someToken;
Path=/;
HttpOnly;
Secure;
SameSite=None