I developed a Shiny app that I use to monitor some information relevant to my company.
The app works fine but often if I notice something interesting in the data and I want to share it with my colleagues I have to send around an email that says something on the lines of
Go to http://shiny.company.com:3838/
Select dates from "x" to "y"
In field "z" select this choices
and so on....
Clearly the best way would be to share a link that would make the Shiny app apply all the required settings.
I think I can partially solve the issue by using the function parseQueryString(session$clientData$url_search)
to set the relevant parameter from an url.
How I can update the url in the browser address bar when one selects values for the parameters? This way sharing a link becomes a matter of copying and pasting the address bar.