Cookie Parser
Parse raw HTTP Cookie request headers or Set-Cookie strings into structured, readable key-value objects.
| Name / Key | Decoded Value |
|---|---|
| Awaiting raw cookie string... | |
HTTP Cookie Format Reference
1. Cookie Header (Request)
Sent by the client in HTTP requests. Consists of simple name-value pairs separated by semicolons and spaces (e.g., name=value; foo=bar).
2. Set-Cookie Header (Response)
Sent by the server in HTTP responses to set state on the client. Includes the primary cookie pair followed by attributes like Path, Domain, and Secure.