├── README.md ├── http-twiddle.el └── samples ├── cookie.http-twiddle ├── simple_get.http-twiddle └── simple_post.http-twiddle /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassy/http-twiddle/HEAD/README.md -------------------------------------------------------------------------------- /http-twiddle.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassy/http-twiddle/HEAD/http-twiddle.el -------------------------------------------------------------------------------- /samples/cookie.http-twiddle: -------------------------------------------------------------------------------- 1 | GET / HTTP/1.1 2 | Host: localhost 3 | Cookie: sessionid=93eb570c0cf1je2135ee35f9656d691c 4 | 5 | -------------------------------------------------------------------------------- /samples/simple_get.http-twiddle: -------------------------------------------------------------------------------- 1 | GET / HTTP/1.1 2 | Host: localhost 3 | 4 | -------------------------------------------------------------------------------- /samples/simple_post.http-twiddle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassy/http-twiddle/HEAD/samples/simple_post.http-twiddle --------------------------------------------------------------------------------