api/_examples/headers/test.http
2022-01-09 08:03:03 +03:00

25 lines
366 B
HTTP

### Request JSON:
POST http://localhost:3000/hello
Content-Type: application/json
{
"name": "Alex"
}
### Response:
# http://localhost:3000/hello
#
#{"message":"Hello, Alex!"}
### Request Form:
POST http://localhost:3000/hello
Content-Type: application/x-www-form-urlencoded
name=Alex
### Response:
# http://localhost:3000/hello
#
#{"message":"Hello, Alex!"}