1
0
Fork 0
arangodb/Documentation/Examples/HTML_05_routingGetMultiPath...

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"