@react-native/debugger-frontend
Version:
Debugger frontend for React Native based on Chrome DevTools
10 lines (7 loc) • 699 B
Markdown
# Indicate whether to send a cookie in a cross-site request by specifying its SameSite attribute
Because a cookie’s `SameSite` attribute was not set or is invalid, it defaults to `SameSite=Lax`,
which will prevent the cookie from being sent in a cross-site request in a future version of the browser.
This behavior protects user data from accidentally leaking to third parties and cross-site request forgery.
Resolve this issue by updating the attributes of the cookie:
* Specify `SameSite=None` and `Secure` if the cookie should be sent in cross-site requests. This enables third-party use.
* Specify `SameSite=Strict` or `SameSite=Lax` if the cookie should not be sent in cross-site requests.