Skip to main content
Go to Latest
type alias Protocol.Network.CookieBlockedReason
import { type Protocol } from "https://deno.land/x/puppeteer@14.1.1/vendor/puppeteer-core/puppeteer/api-docs-entry.js";
const { CookieBlockedReason } = Protocol.Network;

Types of reasons why a cookie may not be sent with a request.

definition: (
| "SecureOnly"
| "NotOnPath"
| "DomainMismatch"
| "SameSiteStrict"
| "SameSiteLax"
| "SameSiteUnspecifiedTreatedAsLax"
| "SameSiteNoneInsecure"
| "UserPreferences"
| "UnknownError"
| "SchemefulSameSiteStrict"
| "SchemefulSameSiteLax"
| "SchemefulSameSiteUnspecifiedTreatedAsLax"
| "SamePartyFromCrossPartyContext"
| "NameValuePairExceedsMaxSize"
)