Hey all, I am wondering: have any other Zoom Apps developers utilized the Clipboard Web API in their app?
I’m trying to allow our hosts to share the meeting link with one-click by using navigator.clipboard.writeText(), but I get navigator.clipboard is undefined… wondering if this is a property of Zoom’s embedded browser or if I’m doing something wrong
this code works fine on all recent browsers. On some older, the clipboard-polyfill package helps.
But nothing of this is working within the webpage of our app, shared in the Zoom meeting. When we inspect the webview, we just get navigator.clipboard => undefined.
Also, the documentation at godevelopers.zoom.us docs zoom-apps architecture says that, for example on Mac, it’s tied to the WKWebView related to the current Safari version. I’m having the latest version of Safari, but no navigator.clipboard is defined in ZoomWebKit. It’s perfectly defined in Safari.
Questions:
Will clipboard be into ZoomWebKit?
Where are the specification of the capabilities of ZoomWebKit ? I cannot find them.
(sorry for the strange web links, I cannot integrate links)