资源

SameSite cookies explained
https://web.dev/samesite-cookies-explained/

SameSite cookie recipes
https://web.dev/samesite-cookie-recipes/

RFC6265bis Same-Site Cookies draft-ietf-httpbis-cookie-same-site-00

概念


A request is “same-site” if its target’s URI’s origin’s registrable domain is an exact match for the request’s initiator’s “site for cookies”, and “cross-site” otherwise.
To be more precise, for a given request (“request”), the following algorithm returns “same-site” or “cross-site”:

  1. If “request”‘s client is “null”, return “same-site”.
  2. Let “site” be “request”‘s client’s “site for cookies” (as defined in the following sections).
  3. Let “target” be the registrable domain of “request”‘s current url.
  4. If “site” is an exact match for “target”, return “same-site”.
  5. Return “cross-site”.

link

The site is the combination of the domain suffix and the part of the domain just before it. For example, the www.web.dev domain is part of the web.dev site.
If the user is on www.web.dev and requests an image from static.web.dev then that is a same-site request. If the user is on your-project.github.io and requests an image from my-project.github.io that’s a cross-site request

when following a link into your site, say from another site or via an email from a friend, on that initial request the cookie will not be sent.

从别的链接跳到你的网站时, 初始请求 Strict 不带cookie, Lax带cookie

请求类型 示例 Lax
链接 <a href="..."></a> 发送 Cookie
预加载 <link rel="prerender" href="..."/> 发送 Cookie
GET 表单 <form method="GET" action="..."> 发送 Cookie
POST 表单 <form method="POST" action="..."> 不发送
iframe <iframe src="..."></iframe> 不发送
AJAX $.get("...") 不发送
Image <img src="..."> 不发送

表格原文链接 (原文其他内容过于简略无参考价值)

SameSite属性兼容处理

link

  • 同时按新旧规则设置cookie, 后端依次检查这俩cookie
    1. Set-cookie: 3pcookie=value; SameSite=None; Secure
    2. Set-cookie: 3pcookie-legacy=value; Secure
  1. const express = require('express');
  2. const cp = require('cookie-parser');
  3. const app = express();
  4. app.use(cp());
  5. app.get('/set', (req, res) => {
  6. // Set the new style cookie
  7. res.cookie('3pcookie', 'value', { sameSite: 'none', secure: true });
  8. // And set the same value in the legacy cookie
  9. res.cookie('3pcookie-legacy', 'value', { secure: true });
  10. res.end();
  11. });
  12. app.get('/', (req, res) => {
  13. let cookieVal = null;
  14. if (req.cookies['3pcookie']) {
  15. // check the new style cookie first
  16. cookieVal = req.cookies['3pcookie'];
  17. } else if (req.cookies['3pcookie-legacy']) {
  18. // otherwise fall back to the legacy cookie
  19. cookieVal = req.cookies['3pcookie-legacy'];
  20. }
  21. res.end();
  22. });
  23. app.listen(process.env.PORT);
  • 或者后端检查client版本, 设置相应cookie

    Alternatively at the point of sending the Set-Cookie header, you can choose to detect the client via the user agent string. Refer to the list of incompatible clients and then make use of an appropriate library for your platform, for example ua-parser-js library on Node.js. It’s advisable to find a library to handle user agent detection as you most probably don’t want to write those regular expressions yourself.