In a rshiny app, I have to read and write to a URL.
I'm basically trying to imitate the functionality of the bookmarkbutton(), because the bookmarkbutton doesn't work with our current app design that we have.
I'm having trouble figuring out how to handle lists/vectors. For example I need to convert
> query$yoy_layers
[1] "[\"500k xs 500k\",\"5m xs 1m\"]"
into something like:
> yoy_layers
[1] "500k xs 500k" "5m xs 1m"
Any help/resources is appreciated. I tried using utils:URLdecode and utils::URLencode but I haven't been able to get it to work when reassigning that back to a shiny element that takes a list/vector.