Move the redirect uri to a variable.
This commit is contained in:
parent
a8f0d6eee3
commit
5cea37fe56
@ -15,9 +15,9 @@ get_oauth_token() {
|
||||
instanceURL="https://${instanceURL}"
|
||||
fi
|
||||
done
|
||||
redirectURI="file://$(realpath ${0})"
|
||||
redirectURI="https://billy.wolfe.casa/ratatoskr-success.html"
|
||||
# get client id and secret
|
||||
curl -s -X POST -d client_name="${softwareName}" -d "redirect_uris=https://billy.wolfe.casa/ratatoskr-success.html" -d "scopes=read write follow push" -d "website=https://git.stormux.org/storm/ratatoskr" "${instanceURL}/api/v1/apps" |
|
||||
curl -s -X POST -d client_name="${softwareName}" -d "redirect_uris=${redirectURI}" -d "scopes=read write follow push" -d "website=https://git.stormux.org/storm/ratatoskr" "${instanceURL}/api/v1/apps" |
|
||||
jq --raw-output '"client_id=\"\(.client_id)\"\nclient_secret=\"\(.client_secret)\""' > "${configPath}/${configFile}"
|
||||
# Load the new variables from the configuration file
|
||||
source "${configPath}/${configFile}"
|
||||
|
Loading…
Reference in New Issue
Block a user