I have developed a relatively simply R shiny app that does the following:
- I input a txt file.
- The txt file is processed.
- A new object is created: timestamp + a number. I save it in my sql database for instance or I save it as a .txt on my server.
I want to configure an API such as on a specific request it would pull the new object through the R shiny server. I believe I could use plumber but that means to run 2 servers and somehow coordinate the data flow. Is there a simple solution such as I could get the data using my R shiny server using an api tool and a simple GET?
Thank you