make post request curl code example
Example 1: curl post json
curl -X POST -H "Content-Type: application/json" \
-d '{"username":"abc","password":"abc"}' \
https:
Example 2: curl post request
curl -d "user=user1&pass=abcd" -X POST https:
Example 3: curl post
curl --data '' https:
curl -X POST https:
curl --request POST https:
Example 4: curl post
curl --data "param1=value1¶m2=value2" https:
Example 5: curl pass data in request
curl -d "param1=value1¶m2=value2" -X POST http:
Example 6: how to send http post create request using curl command
$ curl --form "[email protected]" http: