How to Remove Popup "Action Required - Click the button below to enable Audio"

I build custom application in Angular utilizing Zoom Video UI SDK - Web. it works perfectly well but one problem, in each and every request, it popup action menu

“Action Required”
Click the button below to enable Audio

The code I am using is almost what is available in sample web project

 config = {
    videoSDKJWT: '',
    sessionName: 'test',
    userName: 'Angular',
    sessionPasscode: '123',
    features: ['video', 'audio', 'settings', 'users', 'chat', 'share'],
    options: { init: {}, audio: {}, video: {}, share: {}},
  };

  // and components
  uitoolkit.showUitoolkitComponents(this.sessionContainer, this.config)
  uitoolkit.showVideoComponent(this.videoContainer)
  uitoolkit.showControlsComponent(this.controlsContainer)

I want to enable audio automatically without popuing the modal.

To playback audio in a browser it can only happen after the user interacts with a page. I’m assuming that you’re rendering the UIKit on page load, before the users interacts with the browser, hence the pop up is shown to enable audio.

This is a browser feature called autoplay blocking.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.