How can I send a POST request with a web browser?
- See stackoverflow.com/questions/4797534/…Bennett Brown– Bennett Brown2015-04-02 18:35:10 +00:00Commented Apr 2, 2015 at 18:35
- 1This isn't a duplicate because it does not request an extension or a tool but specifically limits to browser only. Which yielded the superb answer by @oezidatv– datv2018-07-24 12:17:38 +00:00Commented Jul 24, 2018 at 12:17
- 1This also isn't a duplicate because this question was asked before the referenced question.Bash– Bash2019-06-14 20:31:16 +00:00Commented Jun 14, 2019 at 20:31
Add a comment |
2 Answers
With a form, just set method to "post":
<form action="blah.php" method="post"> <input type="text" name="data" value="mydata" /> <input type="submit" /> </form> 2 Comments
bogatyrjov
Or you can use Chrome Poster ( chrome.google.com/webstore/detail/chrome-poster/… ) or Firefox Poster ( addons.mozilla.org/ru/firefox/addon/poster ) extentions, if the purpose is testing.
Abeer Sul
thank you! this was my only resort because I can't download useful extensions like "Postman" at my workplace.