2017-10-05 62 views
0

如何从一个URL跟踪所有发送的(POST/GET)请求?至于在Firefox中做Temper Data Add On如何跟踪PHP中的一个页面发送的所有请求?

例如,如果我向www.example.com发送获取/发布请求,那么我会收到www.example.com的响应。现在我可以通过www.example.com获取所有请求(POST/GET)。

希望我的问题很清楚。

注: - 我要尽一切PHP可以在JavaScript的妥协以及

回答

1
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. 
+0

但如何跟踪所有的上述插件做 –