如何跟踪PHP中的一个页面发送的所有请求?
问题描述:
如何从一个URL跟踪所有发送的(POST/GET)请求?至于在Firefox中做Temper Data Add On。如何跟踪PHP中的一个页面发送的所有请求?
例如,如果我向www.example.com
发送获取/发布请求,那么我会收到www.example.com
的响应。现在我可以通过www.example.com获取所有请求(POST/GET)。
希望我的问题很清楚。
注: - 我要尽一切PHP可以在JavaScript的妥协以及
答
GET Request:
In GET request easy to traceable it passing into the your requesting URL such like this.
//example
https://stackoverflow.com/questions/46578191/
where the above url value /45678191 is an GET value to sent the server.
POST Request:
In go to your network page -> header ->From data it shows all post value.form that page.
但如何跟踪所有的上述插件做 –