I am trying to display Angular website inside another website using object tag.I used bigbluebutton in object tag.I need to use camera on website in the object tag but camera not found.Bigbluebuttom when open different tab, working camera.
Here is my code
openVirtual(url) {
//url = https://xxxx.bigbluebutton.com/html5client/
this.urlVirtual = this.sanitizer.bypassSecurityTrustResourceUrl(url);
this.isBigBlueButtom = true;
}
<div *ngIf="isBigBlueButtom" id="box">
<object type="text/html" [attr.data]="urlVirtual">
</object>
</div
I found the problem. Here is my code