From a42ca5340be6dc92a744fc19a0aa27c60b5c57ea Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Wed, 5 Feb 2020 16:09:27 -0500 Subject: metar/taf: update avwx api --- templates/.bin/taf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'templates/.bin/taf') diff --git a/templates/.bin/taf b/templates/.bin/taf index 9564b95..f7047d7 100755 --- a/templates/.bin/taf +++ b/templates/.bin/taf @@ -6,6 +6,7 @@ if [[ ! -x "$jq" && -x "/usr/local/bin/jq" ]]; then fi station=$(echo -n "$1" | tr "a-z" "A-Z") -json=$(curl -s "https://avwx.rest/api/taf/${station:-KBOS}") -echo "$json" | "$jq" --raw-output '.["Raw-Report"]' 2>&1 +token=$(pass show avwx-token) +json=$(curl -s -H "Authorization: ${token}" "https://avwx.rest/api/taf/${station:-KBOS}") +echo "$json" | "$jq" --raw-output '.raw' 2>&1 -- cgit v1.2.3