Answers for "curl get json output"

PHP
4

curl output pretty print

curl ... | json_pp
Posted by: Guest on November-01-2020
18

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
0

curl post json object command

curl -H "Accept: application/json" -H "Content-type: application/json" -X POST -d '{"id":100}' http://localhost/api/postJsonReader.do
Posted by: Guest on May-03-2020

Browse Popular Code Answers by Language