Video Chat (Beta)
This extension is a beta version. If you are using the PRO > v3.12.1, you can give this one a try.
This extension will support 1-on-1 video chat.
Demo: https://wordpress.dalenguyen.me/video-chat-beta/
Prerequisites
Update firestore security rules
// RTC - START
match /rooms/{room} {
allow read, write: if request.auth != null;
match /calleeCandidates/{candidate} {
allow read, write: if request.auth != null;
}
match /callerCandidates/{candidate} {
allow read, write: if request.auth != null;
}
}
// RTC - END