Reputation: 2321
I don't want to use curl, postman, jquery, etc to specify the http method. If I simply put the URL in the browser address bar, it should make a POST request, not GET. Is it possible?
Upvotes: 0
Views: 4260
Reputation: 9891
No, it is not possible. As stated by @bereal, the method is not part of the url.
Some workarounds:
<form method="POST">
that you open locally;method=POST
to override the GET request.Upvotes: 1