added double quotes

This commit is contained in:
AJ ONeal 2011-08-29 13:43:59 -06:00
parent 41fb3a2c92
commit 59e44cbcef
1 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
HOST=localhost:5080
# immediatley adds a message to RoomA
curl --silent http://${HOST}/RoomA \
curl --silent "http://${HOST}/RoomA" \
-X POST \
-H 'Content-Type: application/json' \
-d '{
@ -16,7 +16,7 @@ curl --silent http://${HOST}/RoomA \
# immediatley adds a message to RoomB
curl --silent http://${HOST}/RoomB \
curl --silent "http://${HOST}/RoomB" \
-X POST \
-H 'Content-Type: application/json' \
-d '{
@ -30,7 +30,7 @@ curl --silent http://${HOST}/RoomB \
# should get the message
let WHEN=`date +%s`000-10000 # 10 seconds ago
let THEN=`date +%s`000+10000 # 10 seconds from now
curl --silent http://${HOST}/RoomA?since=${WHEN}&until=${THEN} \
curl --silent "http://${HOST}/RoomA?since=${WHEN}&until=${THEN}" \
-X POST \
-H 'Content-Type: application/json' \
-d '{
@ -48,7 +48,7 @@ curl --silent http://${HOST}/RoomA?since=${WHEN}&until=${THEN} \
# this should post to RoomA and be seen in the request above
sleep 5
curl --silent http://${HOST}/RoomA \
curl --silent "http://${HOST}/RoomA" \
-X POST \
-H 'Content-Type: application/json' \
-d '{