HTTP 1.0:
openssl s_client -connect host:443 -state -debug
GET / HTTP/1.0
HTTP 1.1:
openssl s_client -connect host:443 -state -debug
GET / HTTP/1.1
Host: <Enter host name here>
POSTing:
openssl s_client -connect host:443 -state -debug
POST / HTTP/1.1
Host: <Enter host name here>
Content-Length: 6foobar
Awesome! Thanks!
That’s a very handy little trick for debugging. Thanks!
Ha, now i finally see why my paypal api wasn’t hitting: 302 response (login redirect). Thanks for the tip!
Very very useful, thanks!
Good Job