Horje
curl post form Code Example
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
curl post
curl --data '' https://example.com/resource.cgi

curl -X POST https://example.com/resource.cgi

curl --request POST https://example.com/resource.cgi
curl post form
curl -X POST -F 'username=davidwalsh' -F 'password=something' http://domain.tld/post-to-me.php
curl pass data in request
curl -d "param1=value1¶m2=value2" -X POST http://localhost:3000/data




Shell

Related
how to install linux headers on arch Code Example how to install linux headers on arch Code Example
how to grep curl verbose Code Example how to grep curl verbose Code Example
gitignore all log files Code Example gitignore all log files Code Example
git pull on another branch Code Example git pull on another branch Code Example
discord unexpected token = Code Example discord unexpected token = Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
14