Loading...

如何在 iframe 中使用 XY Web SDK?

解决方法

基于 XY Web SDK 实现的网页会议应用可以运行在 iframe 中,但是需要在 iframe 中允许响应的运行权限:

<iframe allow="camera *; microphone *; autoplay *; display-capture *; display; fullscreen;" allowfullscreen></iframe>

如果你在 Dom 中嵌套了多层的 iframe,那么必须在每一层的 iframe 中都设置相应的摄像头/麦克风/自动播放的权限,否则可能出现视频声音无法采集和播放的问题。


意见反馈