Reputation: 3948
I am trying to embed a page that does video chats. It shows the chat with no issues, but I can't participate as the page doesn't get my permissions to use the camera and the mic.
Is that something that could be be done with correct implementation? Or it just won't ever work?
I am currently using it with this library like this:
<Iframe
url="theconferenceusrl.com"
width="100%"
height="450px"
id="myId"
className="myClassname"
display="initial"
position="relative"
/>
Upvotes: 1
Views: 794
Reputation: 17610
Did u try. for Iframe u can use allow attribute Check more info
<Iframe
url="theconferenceusrl.com"
width="100%"
height="450px"
id="myId"
className="myClassname"
display="initial"
position="relative"
allow="camera; microphone"
/>
Upvotes: 2