From a24b05c01e40937241c51916a8b6200b8b8624b7 Mon Sep 17 00:00:00 2001 From: Markus Thielker Date: Fri, 27 Dec 2024 17:18:26 +0100 Subject: [PATCH] NORY-34: update script for creating oauth client --- docker/ory-dev/hydra-create-client.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/docker/ory-dev/hydra-create-client.sh b/docker/ory-dev/hydra-create-client.sh index 8b6b038..181920e 100644 --- a/docker/ory-dev/hydra-create-client.sh +++ b/docker/ory-dev/hydra-create-client.sh @@ -2,15 +2,21 @@ # Ory Hydra CLI and writes the client id and # client secret to the command line. -read -r -p "Did you modify the script according to your needs? (y/N)? " answer -if [ answer != "y" && anser != "Y" ]; then - exit 0 +# Check if the number of arguments is correct +if [ $# -ne 2 ]; then + echo "Usage: $0 " + exit 1 fi +name=$1 +owner=$2 + # it is likely you will have to set different redirect-uris # depending on the application you are trying to connect. code_client=$(docker compose exec ory-hydra \ hydra create client \ + --name "$name" \ + --owner "$owner" \ --endpoint http://localhost:4445 \ --grant-type authorization_code,refresh_token \ --response-type code,id_token \