We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vue-chat
iframe
getUserMedia() error: NotAllowedError
原因是没有给访问camera和microphone的权限
camera
microphone
<iframe src="https://example.com" allow="camera;microphone"></iframe>
The text was updated successfully, but these errors were encountered:
getUserMedia0 error: NotAllowedError
No branches or pull requests
原因是没有给访问
camera
和microphone
的权限iframe
引入时,需要允许访问camera
和microphone
,参考如下<iframe src="https://example.com" allow="camera;microphone"></iframe>
The text was updated successfully, but these errors were encountered: