quickblox-javascript-sdk
quickblox-javascript-sdk copied to clipboard
Error: There is no videoroom plugin instance
Showing error on web
const config = {
server: "wss://...",
debug: true, // optional
iceServers: [], // optional
};
const client = new QBVideoConferencingClient(config);
const joinParams = {
roomId: content.dialog_id,
userId: quickUserId,
display: userInfo.name,
onlyAudio: false,
role: 'publisher',
video: 'stdres',
};
client.join(joinParams).then( () => {
console.log('joined successfully');
}).catch( (error) => {
console.log(error);
})
;
@rahulconsagous Hello, Unfortunately, I am not able to reproduce the issue on my end. Please make sure that you followed our documentation, created a session, and attached the video conferencing plugin: https://docs.quickblox.com/docs/js-video-conference If the issue persists, please provide more detailed steps to reproduce and a sample app