MeetingInfo Problem

Description
After updating to the latest version from 1.7.x, in Zoom.Init function, I can not specify anymore the meeting info

meetingInfo:[ ‘topic’, ‘host’]

Error
Type string is not assignable to type ‘MeetingInfoType’

Which version?
1.8.5.

Edit:
To remove the error, i tried to write them as: MeetingInfoType.topic and it doesn’t work.

Hey @donzpaul,

Can you share the respective code so we can reproduce the issue?

Thanks,
Tommy

Please check the peace of code. I am also getting same error after upgdating zoom web sdk to 1.8.5

ZoomMtg.init({
        disableInvite: true,
        meetingInfo: [ // optional
          'topic',
          'host',
          'participant',
          'dc'
        ],
        leaveUrl: this.meetConfig.leaveUrl,
        isSupportAV: true,
        success: res => {
          ZoomMtg.join({
            meetingNumber: this.meetConfig.meetingNumber,
            userName: this.meetConfig.userName,
            signature: this.signature,
            apiKey: this.meetConfig.apiKey,
            userEmail: this.meetConfig.userEmail,
            passWord: this.meetConfig.password,
            success: res1 => {
              console.log('Join meeting success');
              // console.log(element);
            },
            error: err => {
              console.log(err);
            }
          });
        }
      });

`

Hey @noblenishu,

Thank you for reaching out to the Zoom Developer Forum. I wasn’t able to reproduce this with our Sample Web App when using 1.8.5. Just to clarify, are you using Typescript for this project? If so, I’ll try to reproduce this when using Typescript and then engage internal resources if this was an undocumented change.

Thanks,
Max

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