Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I specify POST parameters in wfetch

Tags:

post

testing

I am testing an API, how do I specify the parameters to be passed for a POST request in Microsoft's wfetch.exe?

like image 827
Ravi Vyas Avatar asked Dec 01 '10 04:12

Ravi Vyas


1 Answers

You need to set "Advanced Request" dropdown to "Add Headers & Body"

then in the textbox put:

Content-Type: application/x-www-form-urlencoded\r\n
\r\n
Field1=value&Field2=value2\r\n

If you have a large amount of form data to post you can use the "from file" option

like image 173
Whisk Avatar answered Oct 22 '22 10:10

Whisk