HTTP Cookie Parser
HTTP Cookie Parser
Phân tích các tiêu đề Cookie được gửi từ trình duyệt. Xem nhanh các cặp khóa-giá trị, mã hóa URL và các tên trùng lặp.
Kết quả phân tích
Xem trước JSON
[
{
"index": 0,
"raw": "session=abc123",
"name": "session",
"value": "abc123",
"decodedValue": "abc123"
},
{
"index": 1,
"raw": "theme=dark",
"name": "theme",
"value": "dark",
"decodedValue": "dark"
},
{
"index": 2,
"raw": "locale=zh-CN",
"name": "locale",
"value": "zh-CN",
"decodedValue": "zh-CN"
},
{
"index": 3,
"raw": "callback=https%3A%2F%2Fgeekformat.com%2Fdone",
"name": "callback",
"value": "https%3A%2F%2Fgeekformat.com%2Fdone",
"decodedValue": "https://geekformat.com/done"
}
]Phân tích Cookie trực tuyến, nhìn ngay request mang theo những gì.