Set Cookies
Creates three test cookies with different paths and expiration times.
/utilities/set-cookies
📋 Description
Returns a response with three Set-Cookie headers, each with different paths and max-age values for testing cookie handling.
🍪 Cookies Created
💡 Usage Example
curl -i https://your-service.edgecompute.app/utilities/set-cookies
📄 Expected Response
HTTP/1.1 200 OK Cache-Control: private, no-store Set-Cookie: cookie1=111; path=/cookie1; max-age=1200 Set-Cookie: cookie2=222; path=/cookie2; max-age=2400 Set-Cookie: cookie3=333; path=/cookie3; max-age=3600 Nice cookies!