Chrome DevTools 协议:`Network.setCookie({ sameSite: 'None' })` 失败,为什么?
Chrome DevTools Protocol: `Network.setCookie({ sameSite: 'None' })` fails, why?
我在发送 sameSite
设置为 [=16] 的 Network.setCookie
请求时遇到 Chrome DevTools 协议 returns { success: false }
的问题=].
可能是什么问题? "Lax"
和 "Strict"
似乎工作正常。
sameSite
只能在安全 cookie 上设置为 "None"
。尝试传递 { sameSite: "None", secure: true }
.
有关 SameSite=None
的更多信息:https://web.dev/samesite-cookies-explained/#changes-to-the-default-behavior-without-samesite
我在发送 sameSite
设置为 [=16] 的 Network.setCookie
请求时遇到 Chrome DevTools 协议 returns { success: false }
的问题=].
可能是什么问题? "Lax"
和 "Strict"
似乎工作正常。
sameSite
只能在安全 cookie 上设置为 "None"
。尝试传递 { sameSite: "None", secure: true }
.
有关 SameSite=None
的更多信息:https://web.dev/samesite-cookies-explained/#changes-to-the-default-behavior-without-samesite