NORY-34: update script for creating oauth client
This commit is contained in:
parent
6335036a04
commit
a24b05c01e
1 changed files with 9 additions and 3 deletions
|
@ -2,15 +2,21 @@
|
||||||
# Ory Hydra CLI and writes the client id and
|
# Ory Hydra CLI and writes the client id and
|
||||||
# client secret to the command line.
|
# client secret to the command line.
|
||||||
|
|
||||||
read -r -p "Did you modify the script according to your needs? (y/N)? " answer
|
# Check if the number of arguments is correct
|
||||||
if [ answer != "y" && anser != "Y" ]; then
|
if [ $# -ne 2 ]; then
|
||||||
exit 0
|
echo "Usage: $0 <name> <owner>"
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
name=$1
|
||||||
|
owner=$2
|
||||||
|
|
||||||
# it is likely you will have to set different redirect-uris
|
# it is likely you will have to set different redirect-uris
|
||||||
# depending on the application you are trying to connect.
|
# depending on the application you are trying to connect.
|
||||||
code_client=$(docker compose exec ory-hydra \
|
code_client=$(docker compose exec ory-hydra \
|
||||||
hydra create client \
|
hydra create client \
|
||||||
|
--name "$name" \
|
||||||
|
--owner "$owner" \
|
||||||
--endpoint http://localhost:4445 \
|
--endpoint http://localhost:4445 \
|
||||||
--grant-type authorization_code,refresh_token \
|
--grant-type authorization_code,refresh_token \
|
||||||
--response-type code,id_token \
|
--response-type code,id_token \
|
||||||
|
|
Loading…
Add table
Reference in a new issue