mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-11 09:22:11 +03:00
9 lines
711 B
Plaintext
9 lines
711 B
Plaintext
curl http://localhost:8000/hello
|
|
curl http://localhost:8000/custom-headers -H 'Fruit:Raspberry' -H 'Fruit:Apple' -H 'Fruit:Banana' -H 'Fruit: Grape' -H 'Color:Green'
|
|
curl --header 'Content-Type: application/json' --data $'{\n "name": "Bob",\n "password": "&secret\\\\\'<>",\n "age": 30,\n "strict": true,\n "spacing": "\\n",\n "g_clef": "\\uD834\\uDD1E",\n "items": [true, "true", 1],\n "variable": "\\\\"\n}' 'http://localhost:8000/post-json'
|
|
curl --header 'Content-Type:' --data '@tests_ok/data.bin' 'http://localhost:8000/post-file'
|
|
curl --location 'http://localhost:8000/redirect-absolute'
|
|
curl --retry 4 'http://localhost:8000/retry/until-200'
|
|
curl -k https://localhost:8001/hello
|
|
|