We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74f2d02 commit 096c2ceCopy full SHA for 096c2ce
1 file changed
README.md
@@ -14,11 +14,7 @@ Spring based rest service to test http routes
14
* https://hub.docker.com/r/wlanboy/javahttpclient
15
16
# test java http client
17
-* curl
18
---location
19
---request POST 'http://127.0.0.1:8080/client' \
20
---header 'Content-Type: application/json' \
21
---data-raw '{
22
- "url" : "https://github.com",
23
- "copyHeaders": "false"
24
-}'
+```bash
+curl -L -X POST 'http://127.0.0.1:8080/client' -H 'Content-Type: application/json' \
+-d '{"url" : "https://github.com", "copyHeaders": "false"}'
+```
0 commit comments