Answers for "curl with post request"

PHP
24

curl post json

curl -X POST -H "Content-Type: application/json" 
 -d '{"username":"abc","password":"abc"}' 
 https://api.example.com/v2/login
Posted by: Guest on July-03-2020
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

Code answers related to "curl with post request"

Browse Popular Code Answers by Language