invalidRoomPassword
When the chat is password protected and a user enters an invalid password this event is triggered
JavaScript
frame1.on("invalid_room_password", (message) => {
console.log("invalid_room_password", message);
});
Properties
Properties | Description | Type |
---|---|---|
error | invalid_room_password | String |
message | the room password is invalid | String |
JSON Sample Response
{
"error": "invalid_room_password",
"message": "The room password is invalid"
}