是否可以在iFrame中嵌入视频聊天页面



我正在尝试嵌入一个进行视频聊天的页面。它显示聊天没有问题,但我无法参与,因为页面没有我使用相机和麦克风的权限。

通过正确的实施,这是可以做到的吗?或者它永远不会起作用?

我目前正在将它与这个库一起使用,如下所示:

<Iframe
url="theconferenceusrl.com"
width="100%"
height="450px"
id="myId"
className="myClassname"
display="initial"
position="relative"
/>

你试过了吗。对于Iframe,u可以使用allow属性查看更多信息

<Iframe
url="theconferenceusrl.com"
width="100%"
height="450px"
id="myId"
className="myClassname"
display="initial"
position="relative"
allow="camera; microphone"
/>

最新更新