New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
why does random string get appended to app URL when deployed? #118
Comments
|
This corresponds to the shinyapps.io worker id. Whenever an R process becomes saturated by clients, a new process is created to guaranty a fluid experience. Nothing harmful. |
|
Just to let you know and others that actually, that random string appended to the app's URL when not run locally CAN be harmul!!! E.g.: https://community.rstudio.com/t/w-in-shinyapps-io-url/69893 In my case, this was preventing me from consistently passing parameters via session$clientData$url_search, as illustrated here: https://vimeo.com/492431481/d617643247 The solution is to comment out one line in inst/framework7-5.7.8/my-app.js:
One question though: can the line above be safely commented out? Could there be any unanticipated side effect? Thanks! |
|
After commenting out |
When deploying on shinyapps.io, my URL is not
https://foo.shinyapps.io/my_foo_app/buthttps://foo.shinyapps.io/my_foo_app/_w_0c836d12/.Notice the
_w_0c836d12at the end. I suspect the culprit is shinyMobile, as I have never experienced that with any of my other apps (not relying on shinyMobile).What is the meaning of such a random string? What are the implications?
Thanks!
The text was updated successfully, but these errors were encountered: