Answers for "post with curl command line"

PHP
16

curl post request

curl -d "user=user1&pass=abcd" -X POST https://example.com/login
Posted by: Guest on May-22-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