在Firefox中的本地主机上的Twilio屏幕共享?

时间:2017-09-29 22:49:04

标签: javascript firefox webrtc twilio

目前firefox中localhost上的屏幕共享会引发以下错误: The request is not allowed by the user agent or the platform in the current context.

这是我的代码:

navigator.mediaDevices.getUserMedia({ video: { mediaSource: 'screen' } })
      .then((stream) => {
            console.log('stream', stream)
      })
      .catch((err) => {
            console.log('err', err)
      })

1 个答案:

答案 0 :(得分:6)

如果您正在使用它进行测试,请在about:config中将media.navigator.permission.disabled设置为true,跳过对话框和错误。