Answers for "curl post with http header"

2

curl pass a header

curl -H "Accept-Charset: utf-8" -H "Content-Type: application/x-www-form-urlencoded" http://www.some-domain.com
Posted by: Guest on March-03-2020
2

curl post

curl -X POST -d "param1=value1&param2=value2" https://example.com/post
Posted by: Guest on September-22-2020

Browse Popular Code Answers by Language