My Role in Config is 0 but it returns "Not allow to start webinar from web"

Hi,
I am unable to start webinar using web sdk, but I can start the typical zoom application.
It returns “Not allow to start webinar from web”.

My Config.

/* Config Start */

var meetConfig = {
apiKey: API_KEY,
apiSecret: API_SECRET,
meetingNumber: ‘’,
userName: “”,
userEmail: “”,

    leaveUrl: "https://********************.com",
    role: 0
  };

/* Config End */

My Code

/* Code Start */

ZoomMtg.init({
leaveUrl: meetConfig.leaveUrl,
isSupportAV: true,
success: function () {
console.log(meetConfig.userEmail);
ZoomMtg.join(
{
meetingNumber: meetConfig.meetingNumber,
userName: meetConfig.userName,
signature: signature,
apiKey: meetConfig.apiKey,
userEmail: meetConfig.userEmail,
passWord: meetConfig.passWord,
success: function(res){
$(’#nav-tool’).hide();
console.log(‘join meeting success’);
},
error: function(res) {
console.log(res);
}
}
);
},
err

/* Code End */

Screenshots :

Hi @chris1,

Thanks for reaching out. Right now, you can only join webinars using the WebSDK[1]. We are working on ways to start the webinar in a future release.

1 - https://zoom.github.io/sample-app-web/tutorial-webinar.html

Thanks

@michael_p.zoom
Okay, By the way thanks for the reply.

@chris1 No worries, you can refer to your change log page[1] for updates with our Web SDK.

Let us know if you have any other questions.

1- https://marketplace.zoom.us/docs/changelog

Thanks