Handling Browser Permissions
Properties
self.mediaPermissions
: The current audio and video browser permissions given by the local
user.
Permissions start with NOT_REQUESTED
and can go into 4 different states
ACCEPTED
- The user accepted browser permission promptsDENIED
- The user denied browser permission promptsSYSTEM_DENIED
- The user's browser does not have the required permission, in this case this usually means the browser application lacks the necessary permission on the OS levelCOULD_NOT_START
- Unable to start the selected device, you can retry with a different device
warning
One other thing to note down here is user might revoke permission later, or might unplug devices etc so these states can change at runtime
Use the mediaPermissionUpdate
event on self
to listen for these changes
- Javascript
- React
meeting.self?.addListener('mediaPermissionUpdate', ({ kind, message }) => {
console.log(`Permission update for ${kind} is ${message}`);
});
useEffect(() => {
const onMediaPermissionUpdate = ({ kind, message }) => {
console.log(`Permission update for ${kind} is ${message}`);
};
meeting.self?.on('mediaPermissionUpdate', onMediaPermissionUpdate);
return () => {
meeting.self?.off('mediaPermissionUpdate', onMediaPermissionUpdate);
};
}, [meeting]);