pashky / restclient.el

HTTP REST client tool for emacs
1.99k stars 171 forks source link

How see result HTTP request? #170

Open alexei-28 opened 7 years ago

alexei-28 commented 7 years ago

Example:

:TOKEN = 11111111-2222-3333-4444-555555555555
:LANGUAGE = en-US

GET http://com.mysite/api/Contact/Get
AcceptLanguage: :LANGUAGE
Authorization: Token :TOKEN

And this GET request is success executed. And I success get HTTP response. OK.

The question is: How I can see result HTTP request?

Will be something like this:

GET http://com.mysite/api/Contact/Get
AcceptLanguage: en-US
Authorization: Token 11111111-2222-3333-4444-555555555555
pashky commented 7 years ago

M-x customize-variable url-debug

sr105 commented 6 years ago

It would be really nice to have the option to output the request to the end of the HTTP Response buffer after the response headers. I use variables to generate requests and occasionally I make a mistake that is difficult to find. The Messages logging is all jammed into one line and hard to read not to mention that it's another buffer entirely.

Thanks.