blob: 6efd3420dec3b28611cb94c7b096b23a44be366e (
plain) (
tree)
|
|
### Request JSON:
http://localhost:3000/hello
Content-Type: application/json
{
"name": "Alex"
}
### Response:
# http://localhost:3000/hello
#
#{"message":"Hello, Alex!"}
### Request Form:
http://localhost:3000/hello
Content-Type: application/x-www-form-urlencoded
name=Alex
### Response:
# http://localhost:3000/hello
#
#{"message":"Hello, Alex!"}
|