Answers for "curl example post"

PHP
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
16

curl post request

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

curl example

curl --request POST \
  --url https://api.sendgrid.com/v3/mail/send \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{"personalizations": [{"to": [{"email": "[email protected]"}]}],"from": {"email": "[email protected]"},"subject": "Hello, World!","content": [{"type": "text/plain", "value": "Heya!"}]}'
Posted by: Guest on February-19-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
0

curl post request

curl -d "user=user1&pass=abcd" https://example.com/login
Posted by: Guest on August-08-2021
0

how to send http post create request using curl command

$ curl --form "[email protected]" http://locahost:8080/weather
Posted by: Guest on May-02-2020

Browse Popular Code Answers by Language