Cookie Transmission Scenario Analysis

A reference table showing whether cookies are transmitted across different SameSite settings and Domain attributes, for requests between https://api.hello.dev and https://hello.dev.

Prerequisites

All cookies have the following common options:

  • Secure=true: Cookies are transmitted only over HTTPS connections

The browser transmits all SameSite setting cookies only for same-site requests (where origin and target share the same registered domain hello.dev), so there's no blocking due to SameSite here. When a cookie's Domain attribute is specified, the cookie is transmitted to that domain and all its subdomains. In the tables below, ✅ indicates cookie transmission, and 🚫 indicates no transmission.

https://api.hello.devhttps://api.hello.dev

Domain SameSite Form GET Form POST Fetch GET Fetch POST
api.hello.dev Strict ✅¹ ✅¹
api.hello.dev Lax ✅¹ ✅¹
api.hello.dev None ✅¹ ✅¹
.hello.dev Strict ✅¹ ✅¹
.hello.dev Lax ✅¹ ✅¹
.hello.dev None ✅¹ ✅¹

https://api.hello.devhttps://*.hello.dev

Domain SameSite Form GET Form POST Fetch GET Fetch POST
api.hello.dev Strict 🚫 🚫 🚫 🚫
api.hello.dev Lax 🚫 🚫 🚫 🚫
api.hello.dev None 🚫 🚫 🚫 🚫
.hello.dev Strict ✅¹ ✅¹
.hello.dev Lax ✅¹ ✅¹
.hello.dev None ✅¹ ✅¹

https://api.hello.devhttps://hello.dev

Domain SameSite Form GET Form POST Fetch GET Fetch POST
api.hello.dev Strict 🚫 🚫 🚫 🚫
api.hello.dev Lax 🚫 🚫 🚫 🚫
api.hello.dev None 🚫 🚫 🚫 🚫
.hello.dev Strict ✅¹ ✅¹
.hello.dev Lax ✅¹ ✅¹
.hello.dev None ✅¹ ✅¹

https://hello.devhttps://api.hello.dev

Domain SameSite Form GET Form POST Fetch GET Fetch POST
hello.dev Strict 🚫 🚫 🚫 🚫
hello.dev Lax 🚫 🚫 🚫 🚫
hello.dev None 🚫 🚫 🚫 🚫
.hello.dev Strict ✅¹ ✅¹
.hello.dev Lax ✅¹ ✅¹
.hello.dev None ✅¹ ✅¹

https://hello.devhttps://*.hello.dev

Domain SameSite Form GET Form POST Fetch GET Fetch POST
hello.dev Strict 🚫 🚫 🚫 🚫
hello.dev Lax 🚫 🚫 🚫 🚫
hello.dev None 🚫 🚫 🚫 🚫
.hello.dev Strict ✅¹ ✅¹
.hello.dev Lax ✅¹ ✅¹
.hello.dev None ✅¹ ✅¹

Footnotes

¹ With credentials (Fetch API requires credentials: include option)

Note: When the domain attribute is specified, cookies are transmitted to the specified domain and all its subdomains.

Created : 07/22/25 Modified : 04/13/26
Designed by