-
Notifications
You must be signed in to change notification settings - Fork 151
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
Using app access the url_pathname returns the endpoint it (old issue went back) #522
Comments
Yes, this creates an issue for server-side bookmarks as well. The generated bookmark URL includes the pod id using |
@dylancis this has changed in ShinyProxy in 3.0.0, because it's needed for various features of ShinyProxy (multiple app instances, app pre-initialization, crash detection, shinyproxy operator etc). For what reason do you need the friendly URL names? @rac359 server-side bookmarking should work, even with these URLs. E.g. using the following app configuration: - id: shiny-bookmarking
container-image: bookmark-server
track-app-url: true
container-volumes:
- /tmp/shiny:/root/euler/shiny_bookmarks The URL in browser will automatically update with the new hash and the user can easily bookmark this. This keeps working when the app or shinyproxy is restarted. If you have a button that generates a URL with the bookmark, you'll have to change it to use the URL that is shown in the browser. |
The app has a feature to share unique model run among users. url.app <-
paste(session$clientData$url_protocol,
"//",
session$clientData$url_hostname,
sep = "")
if (session$clientData$url_port != "") {
url.app <-
paste(url.app, ":", session$clientData$url_port, sep = "")
} |
Hm, that's not the behavior I'm seeing. I've enabled |
@dylancis in that case it's best to generate an url to |
Hi @fmichielssen ,
It seems that an old issue you took care of a few years ago went back recently: #102
Using latest ShinyProxy version, while using
app/
access thesession$clientData$url_pathname
now returns the pod id:With
app_direct/
access it does shows the expected firendly name/app_direct/eurmbsinsight/
Thanks, Dylan
The text was updated successfully, but these errors were encountered: