I'm trying to render a Google Slides presentation in my web app.
I'm using the presentations.get() method that the API provides to bring in the data from a presentation, but the way the answer comes in is unfeasible to mount on screen. Comes a giant object. a presentation of only 13 slides returns me an object with 30,000 lines.
link to example API response
If I embed it using iframe, then I can't send key/mouse events to that iframe since it's not the same origin, and I don't want to use Google's embedded control bar, since I need my own custom controls to edit slides.
Does anyone know a way to assemble the slides using the API, which allows me to edit, manipulate the slides?