タグ付けされた質問 「cookies」

HTTP Cookieは、ユーザーのWebブラウザーによって保管されるデータの一部です。特に指定のない限り、CookieはJavaScriptとHTTPヘッダーを介してサーバー側の両方で作成、読み取り、変更、削除できます。

2
CookieとSameSite +セキュア-ExpressJS
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 …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.