I have a questions when user leave session then his get any events or not

var signature=this.zoom_token;
var identity=this.userName;
this.client = ZoomVideo.createClient();

    const videoSDKLibDir = '/node_modules/@zoom/videosdk/dist/lib';
    //console.log(`${window.location.origin}${videoSDKLibDir}`);
    // this.client.init('en-US', 'Global');
    this.client.init('en-US', `CDN`);

    await this.client.join(
      this.session_name,
      signature,
      identity,
    ).then((data) => {
    
      // document.querySelector('#self-view-video').style.display = 'block';
      this.participants = this.client.getAllUser();

    }).catch((error) => {
      console.log(error);
    });

this.client.leave();

this is my code. after user leave a session , then his get any zoom events or not , i am using zoom video sdk .

Hey @rinki

Thanks for your feedback.

When a user leaves the session, he will receive a connection-change event with the payload “Closed”.

Thanks
Vic

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.