Web sdk while adding meetingInfo shows error "Init invalid parameter !"

Description
Web sdk on init meeting while adding meetingInfo array shows error

Error
“Init invalid parameter !!!”

SDK: v 1.7.8
“browserInfo”:“Firefox/78.0”

Hey @anoop.ms,

Please share steps and code to reproduce the issue so I can help. :slight_smile:

Thanks,
Tommy

    ZoomMtg.init({
        leaveUrl: return_url,
        showMeetingHeader: false, //option
        disableInvite: true, //optional
        meetingInfo: [ // optional
            'topic',
            'host',
            'mn',
            'pwd',
            'telPwd',
            'participant',
            'dc'
        ],
        success: function (res) {
            ZoomMtg.join(
                {
                    meetingNumber: meetConfig.meetingNumber,
                    userName: meetConfig.userName,
                    signature: signature,
                    apiKey: meetConfig.apiKey,
                    passWord: meetConfig.passWord,
                    success: function(res){
                        
                        console.log('join meeting success');
                    },
                    error: function(res) {
                        console.log(res);
                    }
                }
            );
        },
        error: function(res) {
            console.log(res);
        }
    });

this is the code i used to init meeting. It shows error on console.

Hey @anoop.ms,

What are you setting for your return_url?

Thanks,
Tommy

Hi,
I am setting our website URL as return_url.

the above code is working without meetingInfo . Only have issue when add meetingInfo

Hey @anoop.ms,

The meetingInfo property is only available in version 1.7.9 and above.

Thanks,
Tommy