So, here’s the context:
I want to create a shiny app that loads Google Analytics user data.
What Shiny Proxy is doing is launching a new webpage each time a user connects, with the url (for example) http://<url>:<port>/app/01_hello/endpoint/xyzabcdefghijklm/
— the id of this endpoint being randomly assigned.
I have on this app (01_hello), a button that sends a request for Oauth. If I am on an already launched app, I can go to the google dev console, and manually enter http://<url>:<port>/app/01_hello/endpoint/xyzabcdefghijklm/
as an authorized URI. And that works.
The thing is that each time I relaunch this app, a new endpoint id is randomly generated. So I can’t anticipate what the endpoint will be for future user.
So, the TLDR being: as each app has a random id paste at the end of the url, I can’t anticipate what this url will be and allow my app to access the Google Console.
Any idea how I could get around that?
Thanks