Tweak cURL-based API client.

This commit is contained in:
Jonathan Bernard 2019-03-02 02:05:18 -06:00
parent e9bdcbffcd
commit 57d4239027

View File

@ -1,6 +1,6 @@
#!/bin/bash
host="${PM_API_HOST:-localhost:8080}"
host="${PM_API_HOST:-localhost:8081}"
if [ $# -eq 1 ]; then
url="$1"
method="GET"
@ -19,4 +19,4 @@ curl -s -X "$method" \
-H "Content-Type: application/json" \
-H "Authorization: $(cat credential)"\
"http://${host}/api/$url" \
-d "$data" | jq .
-d "$data"