How to see all HTTP Get request sent from browser without debugging tool?

馋奶兔 提交于 2020-01-04 04:14:27

问题


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


回答1:


For the most part, browsers do NOT log a history of their HTTP GET requests. Also, if you're using ajax, you're probably doing HTTP POST requests as well.

You don't have to use an in-browser tool like Firebug, but you will need some tool to actually get a history of requests and the request bodies.

You can use a tool like Fiddler2, which is a proxy that gets all HTTP traffic outgoing from your computer (including from your browser and all other applications).

If you have control of the server environment, you can also set up logging on the server to capture this data.




回答2:


You can use WireShark or a similar tool to monitor the network traffic and inspect the packets.



来源:https://stackoverflow.com/questions/5995660/how-to-see-all-http-get-request-sent-from-browser-without-debugging-tool

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!