<https://www.ory.sh/docs/hydra/jwks#add-custom-key...
# feedback
p
https://www.ory.sh/docs/hydra/jwks#add-custom-keys the command
Copy code
ory patch oauth2-config $YOUR_PROJECT_ID \
  --add '/webfinger/jwks/broadcast_keys/-="custom_keyset"'
is incorrect, should be
Copy code
ory patch oauth2-config --project $YOUR_PROJECT_ID \
  --add '/webfinger/jwks/broadcast_keys/-="custom_keyset"'
also it would be more helpful if instead of "custom keyset" you provided the escaped valued for the example public key on the same page... located here https://www.ory.sh/docs/hydra/jwks#public-key-only
b
The first command as documented on the link worked for me, FWIW