My ShinyProxy is up and running. If I use the authentication basic, it is working. I wanted to connect the ShinyProxy with my IdentityServer4.
Follow the documentation of ShinyProxy, I configure my ShintProxy as follow:
proxy:
title: Open Analytics Shiny Proxy
port: 8080
authentication: openid
admin-groups: scientists
openid:
auth-url: https://myidentityserver4/connect/authorize
token-url: https://myidentityserver4/connect/token
jwks-url: https://myidentityserver4/.well-known/openid-configuration/jwks
client-id: ShinyProxy
client-secret: password
When the user opens the browser to the ShinyApp, it is redirected to login page to the IdentityServer4. The user can login and then it is redirected to
http://myshinyproxyurl)/login/oauth2/code/shinyproxy
Unfortunately, the result is
or if I try on my laptop the error is slightly different
It seems there are too many redirections in the ShinyProxy.
Any ideas?
question from:https://stackoverflow.com/questions/65924656/shinyproxy-and-authentication-with-identityserver4