I need to use:
session$clientData$url_search
which is a reactive expression but I don't want to use it in a reactive wrapper, i.e.
sessionData <- reactive({
sessionData <- session$clientData$url_search
})
is there a way to now use this session data in a non reactive way? i.e.
url <- paste("http://example.web.ninja/,sessionData,sep="")
URLdata <- fromJSON(file=url,method='C')
without having to use:
URLdata <- reactive({
url <- paste("http://example.web.ninja/,sessionData(),sep="")
URLdata <- fromJSON(file=url,method='C')
})
Thanks