I'm familiar with LiveHTTPHeaders and TamperData which can show what is going to be sent to the web server. However, I also want to study the server responses. How can I do this?
相关问题
- Angular RxJS mergeMap types
- Google Apps Script: testing doPost() with cURL
- How to instantiate Http service in main.ts manuall
- C#使用http访问网络,有办法用指定网卡访问网络嘛?
- PHP Empty $_POST
相关文章
- C#使用http访问网络,有办法用指定网卡访问网络嘛?
- Is a unicode user agent legal inside an HTTP heade
- git: retry if http request failed
- Flutter - http.get fails on macos build target: Co
- C# HttpClient.SendAsync always returns 404 but URL
- Progressive web app(PWA) vs Electron vs Browser ex
- Response body is null, status is 200
- Returning plain text or other arbitary file in ASP
I recommend Fiddler. It shows all traffic organized per request, and offers multiple ways to view the request and response. Like formatted xml, javascript, post body. It also decodes when needed. If I'm right it also offers an firefox integration addon.
On Windows, you could use HttpWatch. It will save the complete HTTP response from the server, including all binary content.
There is a free version available, but it is limited to sites in the Alexa Top 20.
** Disclaimer: This answer was posted by Simtec Limited, the makers of HttpWatch **
As always: Firebug.
HttpFox is one of my favorites.
Firebug is good. My preference is Fiddler.
You may try Web Developer extension for Firefox. It has many handy tools and can show you server response and header as well.