# HG changeset patch # User Kim Alvefur # Date 1680874023 -7200 # Node ID 071d05b13a0696b8787051815672354677fc0aa9 # Parent 107d60c70c1ad2432124b8498a159ca8ed386a63 mod_rest/rest.sh: Update 'client_uri' to module page This started as a convenience wrapper for httpie + mod_rest that eventually grew OAuth support. diff -r 107d60c70c1a -r 071d05b13a06 mod_rest/example/rest.sh --- a/mod_rest/example/rest.sh Fri Apr 07 15:26:41 2023 +0200 +++ b/mod_rest/example/rest.sh Fri Apr 07 15:27:03 2023 +0200 @@ -69,7 +69,7 @@ if [ -z "${OAUTH_CLIENT_INFO:-}" ]; then # Register a new OAuth client REGISTRATION_ENDPOINT="$(echo "$OAUTH_META" | jq -e -r '.registration_endpoint')" - OAUTH_CLIENT_INFO="$(http --check-status "$REGISTRATION_ENDPOINT" Content-Type:application/json Accept:application/json client_name=rest client_uri="https://www.zash.se/rest-script.html" redirect_uris:='["urn:ietf:wg:oauth:2.0:oob"]')" + OAUTH_CLIENT_INFO="$(http --check-status "$REGISTRATION_ENDPOINT" Content-Type:application/json Accept:application/json client_name=rest client_uri="https://modules.prosody.im/mod_rest" redirect_uris:='["urn:ietf:wg:oauth:2.0:oob"]')" mkdir -p "${XDG_CACHE_HOME:-$HOME/.cache}/rest/" typeset -p OAUTH_CLIENT_INFO >> "${XDG_CACHE_HOME:-$HOME/.cache}/rest/$HOST" fi