Questions tagged [shinymanager]
15 questions
4
votes
1 answer
Launch shinymanager authentification after click on button in the first tab then display other tabs
I was wondering if it was possible to protect a shiny application with shinymanager but with having the possibility to access the first tab of the app before entering username and password while the second and third tab are hidden ?
I would like a…

Linda
- 166
- 1
- 11
3
votes
2 answers
Warning using ShinyManager: Font Awesome icon ('close') does not exist
I am getting these warnings from my Shiny app due to the new version of Font Awesome 5.
The `name` provided ('sign-out') is deprecated in Font Awesome 5:
* please consider using 'sign-out-alt' or 'fas fa-sign-out-alt' instead
* use the `verify_fa =…

emr2
- 1,436
- 7
- 23
2
votes
3 answers
How to make admin mode available for Shinymanager with SQL database
I have a working Rshiny app with shinymanager using postgres database hosted on AWS.
I wonder if there is any way to make the admin mode available in this app.
According to shinymanager documentation, admin mode is available only with sqlite…

M.Qasim
- 1,827
- 4
- 33
- 58
2
votes
1 answer
Using shinymanager with hashed passwords stored in a postgresql database
I want to use the shinymanager package to secure my Rshiny application but I want to use it with a PostgreSQL database...
I checked the example provided in the documentation and the github of the package to eventually create this code that is not…

zakros
- 119
- 9
2
votes
1 answer
How to use shinymanager along with session$onSessionEnded() to close the app upon browser close
I have an application which uses the shinymanager library for user login. I want to use the session$onSessionEnded() to close my app once the browser is closed as suggested in the link Close Shiny App upon Browser close by Joe Chang
App is working…

Santhosh Manikandan
- 43
- 3
2
votes
1 answer
Delay/avoid duplication of shiny server side functions until after credentials
I have put together a secure app to be hosted on shinyapps.io and everything works as desired except for my reactive server functions begin to run while waiting for credentials to be entered, and then run again once the credentials are verified.…

BEVAN
- 426
- 2
- 12
1
vote
1 answer
How can I hide/show the Flexdashboard page based on the user?
I created a Flexdashboard with two tabs. I'm using shinymanager package for authentication. In the shinymanager credentials, I created two users: "admin" and "manager." Now I want the admin user to have access to both tabs and the manager to only…

ISMAIL AHMED
- 43
- 4
1
vote
1 answer
How to programmatically filter contents of a second shiny app displayed via iframe
My application server file looks like this :
packages <- c("shiny", "shinydashboard", "RColorBrewer", "DT", "readxl", "plotly", "shinyanimate", "tidyverse", "shinycssloaders", "gridExtra", "shinyjs", "shinymanager")
lapply(packages, library,…

ss10
- 69
- 6
1
vote
2 answers
How to change the color of the Shinymanager Login Page?
I am trying to change the color tone of the login page from the shinymanager package.
I have seen these posts:
Change Text and Colors in Shinymanager Login Page
Change the color tone of a shinytheme
How to style shimymanager login screen with CSS…

emr2
- 1,436
- 7
- 23
0
votes
1 answer
How to use shinymanager r package on remote server?
Could someone adapt the code below to be used on a remote server? I couldn't find any simple example on the package pages or on the internet that addressed this issue. Here's the code:
global.r
# Init DB using credentials data
credentials <-…

Ivan Bezerra Allaman
- 79
- 1
- 9
0
votes
0 answers
Authenticate R Shiny APP with shinymanager using REST API
From R I can retrieve status 200 when Username and Password are correct and exist using library(httr).
httr::POST(
'https://xxx/api/Auth/Login',
accept_json(),
content_type_json(),
encode = "json",
…

DemetriusRPaula
- 377
- 1
- 10
0
votes
0 answers
"shinymanager" package and dependent SelectInputs, how to populate the first dropdown
I am using shinymanager package to control access to data. Also, the users are the first category in the dependent drop downs. One of the users has access to all the data, so the first selection will show all the users. The remaining users will have…

Jacek Kotowski
- 620
- 16
- 49
0
votes
1 answer
How to build a Shinymanager and Brochure app with Golem
I don't really have a repository to share as I am falling at the first hurdle sadly. I was wondering how to build an golem app that is both a Brochure and shinymanager one as I am hoping to create a login page for my app that leads to a menu page…

James Hopgood
- 15
- 3
0
votes
1 answer
New password module in R Shinymanager not working
I am trying to get the New password module of the R Shinymanager package to work in a R Shiny app but I can't seem to be able to store the new password anywhere. The function update_pwd in the code below should allow me to do this but I can't get it…

Tomar
- 11
0
votes
1 answer
In an app with 2 different versions of shiny widget for each user speicic user may be able to set the choices of shiny widget of the other user
I have the shiny app below in which there are 2 users the shiny(admin) and the shinymanager. Depending on which credentials the user may use he sees a different selectInput() "Variable".
What I want to do is to give the shiny user the ability to set…

firmo23
- 7,490
- 2
- 38
- 114