curl send Postrequest code example
Example 1: curl post request
curl -d "user=user1&pass=abcd" -X POST https://example.com/login
Example 2: curl post
curl --data "param1=value1¶m2=value2" https://example.com/post
curl -d "user=user1&pass=abcd" -X POST https://example.com/login
curl --data "param1=value1¶m2=value2" https://example.com/post