Answers for "curl content-type"

16

curl post request

curl -d "user=user1&pass=abcd" -X POST https://example.com/login
Posted by: Guest on May-22-2020
0

curl content-type

curl 'https://httpbin.org/post' -H 'Content-Type: application/x-www-form-urlencoded' -d 'param1=value1&param2=value2'
Posted by: Guest on August-27-2021
0

curl pass data in request

curl -d "param1=value1¶m2=value2" -X POST http://localhost:3000/data
Posted by: Guest on March-03-2020

Browse Popular Code Answers by Language