How to see all HTTP Get requests sent from a browser without debugging?

so I have a page doing ajax and jsonp series (like injection) to get data. I would like to know how to find out the URL of the request I created without using debugging tools like firebug. etc., i.e. GET browser request history. Thanks

+3
source share
2 answers

In most cases, browsers do NOT log the history of their HTTP GET requests. Also, if you use ajax, you are probably also doing HTTP POST requests.

You do not need to use a tool built into the browser, such as Firebug, but you will need a tool to get the history of requests and request bodies.

, Fiddler2, -, HTTP-, ( ).

, .

+6
+2

All Articles