Hi there,
I’m building a Zoom App that runs inside a Zoom meeting and needs to fetch real-time data (probabilities) from a local .exe running on localhost. Specifically, I’m trying to use:
fetch('http://localhost:5000/probabilities')
Will this work when users install and run my Zoom App on their machines? In other words, can a Zoom App inside the meeting sandbox access a local server (e.g., Flask API running on localhost:5000)?
Thanks!