Answers for "send post request"

PHP
16

curl post request

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

HTTP POST Request:

POST http://localhost:60464/api/student?age=15 HTTP/1.1
User-Agent: Fiddler
Host: localhost:60464
Content-Type: application/json
Content-Length: 13

{
  id:1,
  name:'Steve'
}
Posted by: Guest on October-12-2020

Browse Popular Code Answers by Language