You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@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
Showing error on web
<script src="https://unpkg.com/quickblox/quickblox.min.js"></script> <script src="https://webrtc.github.io/adapter/adapter-latest.js"></script> <script src="[assets/video/quickblox-multiparty-video-conferencing-client-0.8.8.min.js](https://educationcloud.app/teachers/assets/video/quickblox-multiparty-video-conferencing-client-0.8.8.min.js)"></script>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);
})
;
The text was updated successfully, but these errors were encountered: