How to know complete URL with querystring?

2019-09-05 07:05发布

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

?

标签: html url post get
1条回答
迷人小祖宗
2楼-- · 2019-09-05 07:33

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 )

查看更多
登录 后发表回答