Add many callbacks URL for registering new client

I don’t find any the document about pass multi URL callback for creating the client. So please update the document.

For example:

docker run --rm -it \
  -e CLUSTER_URL=https://ory-hydra-example--hydra:4444 \
  -e CLIENT_ID=admin \
  -e CLIENT_SECRET=demo-password \
  --network hydraguide \
  oryd/hydra:v0.11.6 \
  clients create --skip-tls-verify \
    --id some-consumer \
    --secret consumer-secret \
    --grant-types authorization_code,refresh_token,client_credentials,implicit \
    --response-types token,code,id_token \
    --allowed-scopes openid,offline,hydra.clients \
    --callbacks http://localhost:9010/callback

In case I use the command above how I pass multi url?

 --callbacks http://localhost:9010/callback,http://localhost:9010/callback1,http://localhost:9010/callback2
1 Like