-
Notifications
You must be signed in to change notification settings - Fork 1
/
curl-tests.sh
38 lines (27 loc) · 1.35 KB
/
curl-tests.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
curl --include --header "Content-Type: application/json; charset=UTF-8" \
--request POST \
--data-binary "{
\"key\":\"prvni.klic\",
\"message\": \"První klíč je vždy nejlepší\!\"
}" http://localhost:8080/api/messages;
curl --include --header "Content-Type: application/json" \
--request POST \
--data-binary "{
\"key\":\"druhy.klic\",
\"message\": \"Ahoj vsichni, tohle je druhý super message.\"
}" http://localhost:8080/api/messages;
curl --include --header "Content-Type: application/json; charset=UTF-8" \
--request POST \
--data-binary "{
\"key\":\"vyherce\",
\"message\": \"Tomucha\!\"
}" http://matelier-sandbox.appspot.com/api/messages;
curl --include --request GET http://localhost:8080/api/messages/prvni.klic;
curl --include --request GET http://matelier-sandbox.appspot.com/api/messages/vyherce;
curl --include --request GET --header "Authorization: Ja su Franta" http://localhost:8080/api/messages;
curl --include --request DELETE http://localhost:8080/api/messages/prvni.klic;
-------------------
curl --include --header "Content-Type: application/json; charset=UTF-8" --request POST --data-binary "{
\"key\":\"prvni.klic\",
\"message\": \"První klíč je vždy nejlepší\"
}" http://localhost:8080/_ah/api/messages/v1/createMessage