How do you force a web browser to use POST when getting a url?
I have a feeling from your question you were just hoping to send a post request in a browser's address bar.
Just type the following into the address bar swapping the value for 'action' to the url that you like.
data:text/html,
It's invalid html, but the browser's (at least all the ones i've tested it in so far) know what you mean, and I wanted to keep it as short as I could.
If you want to post values, append as many inputs as you like, swapping name and value in each input for whatever you like.
It's important to note that sensitive information you post will be visible in:
It's a really bad way to send a post request, and all the other answers are far better, but it's still cool that you can do it.