Call SHINY with parameters from an other application (not SHINY)

Hello,

I am not a SHINY user, but have the task of calling SHINY from another tool in such a way that the data already selected in the other tool is used in SHINY to immediately display the matching data in SHINY.
Is this possible?
Is there a description of an API through which such a call can be made?

best regards
Siegbert

I would guess that the most straightforward approach is to have your 'other tool' write its selected data to a database that shiny can be polling and displaying the changes therein.

thank you, but all the data is already in shiny. There are about 35.000 records per year for a "location", sometimes for 10 years. This data can be shown in a graph in SHINY. The task ist to open SHINY for this location and to show the graph without manually navigate to the location in SHINY.

You can pass URL parameters (e.g. www.mysite.com/?param=1) to Shiny apps and read them this way

query <- parseQueryString(session$clientData$url_search)
query[['param']]

Thank you! That works.

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.