目前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)
})
答案 0 :(得分:6)
如果您正在使用它进行测试,请在about:config中将media.navigator.permission.disabled
设置为true,跳过对话框和错误。