anvilresearch / connect-cli

CLI for Anvil Connect
MIT License
3 stars 11 forks source link

client register with a single ----post-logout-redirect-uri failed #70

Open henrjk opened 9 years ago

henrjk commented 9 years ago

The following failed:

dev$ nvl client:register \
>   --issuer "localhost-3000" \
>   --trusted \
>   --name "Angular example with page for http://localhost:9000" \
>   --uri "http://localhost:9000" \
>   --logo-uri "http://localhost:9000/logo" \
>   --application-type "web" \
>   --response-type "id_token token" \
>   --grant-type "implicit" \
>   --default-max-age "3600" \
>   --redirect-uri "http://localhost:9000/callback_page" \
>   --redirect-uri "http://localhost:9000/rp.html" \
>   --post-logout-redirect-uri "http://localhost:9000"

A workaround was to duplicate the --post-logout-redirect-uri argument.