Send a POST request using fiddler
During the testing process, we sometimes encounter the need to modify the parameters in the request, to verify the security of the permissions, but some post requests, we can not directly modify his parameters in the browser, and then to submit validation.
And fiddler can help us to send get and post requests very well.
The following is a fiddler interface.
We send a get/post request under composer, which can be opened by F9 the shortcut key.
As shown: We can select the way to send the request in the form of the request, enter the address to send the request in the URL input box, then enter the requested headers and the requested content, click Execute to execute the send request.
If you want to modify an already caught request parameters, the more convenient method, you can directly select the caught request, and then drag to composer, will automatically drag the request parsed and raw, so long as the change you need to change the parameters, and then click Submit on it.
Send a POST request using fiddler