For reference here is how you would perform a POST using curl.
Replace request body with what you need to post, for example ‘someParam=value’.
curl -H "Content-Type: plain/text" -X POST -d 'request body' http://example.com/posthandler
For reference here is how you would perform a POST using curl.
Replace request body with what you need to post, for example ‘someParam=value’.
curl -H "Content-Type: plain/text" -X POST -d 'request body' http://example.com/posthandler