mirror of
https://github.com/httpie/cli.git
synced 2024-11-25 17:23:25 +01:00
d03e3f4e14
* Properly remove duplicate Cookie headers * Implement support for multiple headers with the same name in sessions * More testing * Cleanup * Remove duplicated test, cleanup * Fix pycodestyle * CHANGELOG Co-authored-by: Jakub Roztocil <jakub@roztocil.co>
34 lines
691 B
JSON
34 lines
691 B
JSON
{
|
|
"__meta__": {
|
|
"about": "HTTPie session file",
|
|
"help": "https://httpie.io/docs#sessions",
|
|
"httpie": "3.1.0"
|
|
},
|
|
"auth": {
|
|
"raw_auth": "foo:bar",
|
|
"type": "basic"
|
|
},
|
|
"cookies": [
|
|
{
|
|
"domain": null,
|
|
"name": "baz",
|
|
"expires": null,
|
|
"path": "/",
|
|
"secure": false,
|
|
"value": "quux"
|
|
},
|
|
{
|
|
"domain": null,
|
|
"name": "foo",
|
|
"expires": null,
|
|
"path": "/",
|
|
"secure": false,
|
|
"value": "bar"
|
|
}
|
|
],
|
|
"headers": {
|
|
"X-Data": "value",
|
|
"X-Foo": "bar"
|
|
}
|
|
}
|