diff --git a/ratatoskr.sh b/ratatoskr.sh index d8ebbc9..c5794c7 100755 --- a/ratatoskr.sh +++ b/ratatoskr.sh @@ -51,6 +51,8 @@ get_oauth_token() { fi 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")" echo "oauth_token=\"${oauth_token}\"" >> "${configPath}/${configFile}" echo "instanceURL=\"${instanceURL}\"" >> "${configPath}/${configFile}" }