mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-23 19:12:06 +03:00
17 lines
826 B
Plaintext
17 lines
826 B
Plaintext
curl 'http://localhost:8000/methods/get'
|
|
curl --head 'http://localhost:8000/methods/head'
|
|
curl -X POST 'http://localhost:8000/methods/post'
|
|
curl -X PUT 'http://localhost:8000/methods/put'
|
|
curl -X DELETE 'http://localhost:8000/methods/delete'
|
|
curl -X CONNECT 'http://localhost:8000/methods/connect'
|
|
curl -X OPTIONS 'http://localhost:8000/methods/options'
|
|
curl -X TRACE 'http://localhost:8000/methods/trace'
|
|
curl -X PATCH 'http://localhost:8000/methods/patch'
|
|
curl -X LINK 'http://localhost:8000/methods/link'
|
|
curl -X UNLINK 'http://localhost:8000/methods/unlink'
|
|
curl -X PURGE 'http://localhost:8000/methods/purge'
|
|
curl -X LOCK 'http://localhost:8000/methods/lock'
|
|
curl -X UNLOCK 'http://localhost:8000/methods/unlock'
|
|
curl -X PROPFIND 'http://localhost:8000/methods/propfind'
|
|
curl -X VIEW 'http://localhost:8000/methods/view'
|