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

pokxtpni  于 2022-12-16  发布在  其他
关注(0)|答案(1)|浏览(193)

我正在尝试嵌入一个可以进行视频聊天的页面。它显示聊天没有问题,但我无法参与,因为该页面没有获得我使用摄像头和麦克风的权限。
这是可以通过正确的实施来实现的吗?还是永远不会起作用?
我目前正在使用它与这个库如下:

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

0s0u357o1#

是否尝试过。对于Iframe,可以使用allow属性Check more info

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

相关问题