diff --git a/ratatoskr.sh b/ratatoskr.sh index c5794c7..72abcc5 100755 --- a/ratatoskr.sh +++ b/ratatoskr.sh @@ -52,7 +52,7 @@ get_oauth_token() { echo read -er oauth_token # This is actually a authorization token, so get the actual token. - oauth_token="$(curl -sS -d "client_id=${client_id}" -d "client_secret=${client_secret}" -d "code=${oauth_token}" -d "grant_type=authorization_code" "${instanceURL}/oauth/token")" + oauth_token="$(curl -sS -d "client_id=${client_id}" -d "client_secret=${client_secret}" -d "code=${oauth_token}" -d "grant_type=authorization_code" "${instanceURL}/oauth/token" | jq --raw-output '(.access_token)')" echo "oauth_token=\"${oauth_token}\"" >> "${configPath}/${configFile}" echo "instanceURL=\"${instanceURL}\"" >> "${configPath}/${configFile}" }