Answers for "how to make post request using curl"

PHP
2

curl post

# dont forget the content type, else it will throw an error

curl -X POST -H "Content-Type: application/json" \
 -d '{"username":"abc","password":"abc"}' \
 https://api.example.com/v2/login
Posted by: Guest on August-12-2021
0

how to send http post create request using curl command

$ curl -X POST -d @filename http://locahost:8080/weather
Posted by: Guest on May-02-2020

Code answers related to "how to make post request using curl"

Browse Popular Code Answers by Language