mirror of https://gitee.com/bigwinds/arangodb
29 lines
709 B
Plaintext
29 lines
709 B
Plaintext
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/hello/world
|
|
|
|
HTTP/1.1 200 OK
|
|
content-type: text/plain
|
|
x-content-type-options: nosniff
|
|
|
|
"Match No 1"
|
|
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/hello/emil
|
|
|
|
HTTP/1.1 200 OK
|
|
content-type: text/plain
|
|
x-content-type-options: nosniff
|
|
|
|
"Match No 2"
|
|
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/your/world
|
|
|
|
HTTP/1.1 200 OK
|
|
content-type: text/plain
|
|
x-content-type-options: nosniff
|
|
|
|
"Match No 3"
|
|
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/hi/you
|
|
|
|
HTTP/1.1 200 OK
|
|
content-type: text/plain
|
|
x-content-type-options: nosniff
|
|
|
|
"Match No 4"
|