How to know complete URL with querystring?

╄→尐↘猪︶ㄣ 提交于 2019-12-11 18:36:09

问题


I am running a web application on firefox. When I click on the button it redirects to some page and processes query string. The query string parameters are hidden in the url.

Please let me know if there are any tools which can be used to identify the querystring parameters and to generate a complete url.

e.g.

Base URL - http://something.com/someAction

When I click on a button it redirects to "http://something.com/newAction

It hides the query string parameters.

How can I retrieve an entire url as - http://something.com/newAction?xxx=xxx&yy=yy&zz=zz

?


回答1:


No. If the query string parameters are hidden, it is probably a POST request. To make the query string visible in URL, use GET request.

Please understand the difference of GET and POST request.

Clarification: POST request can have both query string as well as POST fields ( hidden query string you suggested )



来源:https://stackoverflow.com/questions/17669105/how-to-know-complete-url-with-querystring

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