1

I am currently developing a dashboard in R. The dashboard should be authenticated based on the LDAP credentials of the user. Based on the LDAP credentials, the data should be displayed. But I tried using the normal authentication. It works well. Is there any way of implementing conditional access to the dashboard using LDAP?

Thanks in advance.

Nevedha Ayyanar
  • 845
  • 9
  • 27

1 Answers1

1

The commercial versions of Shiny Server support LDAP authentication, see this. Furthermore the open source solution shinyproxy provides LDAP support.

ismirsehregal
  • 30,045
  • 5
  • 31
  • 78
  • Is there any implemented example in R for this case? – Nevedha Ayyanar Feb 12 '19 at 11:19
  • With the above mentioned solutions, it is a matter of server configuration. Your R code isn't touched by that. If you want to create a solution directly with R code please have a look at this related [question](https://stackoverflow.com/questions/28987622/starting-shiny-app-after-password-input/). Unfortunately they aren't using LDAP. – ismirsehregal Feb 12 '19 at 11:21