Expressアプリケーションで次の設定を行っているにもかかわらず、コンソールに次の警告が表示されています。誰かが以前にこのエラーを見たことがありますか?検索した結果、https://github.com/expressjs/express/issues/3095にアクセスしました
私はエクスプレスも使用しています: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.
Insomia(Postman)を使用してリクエストを行うと、次のようになります
access_token=someToken;
Path=/;
HttpOnly;
Secure;
SameSite=None
問題が..私は現在、午前HTTPSではなくHTTP経由でクッキーをサービスに関連するかもしれない
—
エリック・E
テストした結果、HTTPでも機能することがわかりました。
—
David Lin、