I can start a webinar for another account with our SDK Key

We have used the Meeting SDK for Web to create a new feature of our service.
Service subscribers can now start a hosted meeting or seminar in their browser.

Currently, the join function after init in the SDK is as follows.

ZoomMtg.init({
  leaveUrl,
  success: () => {
    ZoomMtg.join({
      signature,
      meetingNumber, // ID for meeting or webinar hosted by service subscriber.
      userName: input.name,
      sdkKey, // Keys issued by our SDK App.
      userEmail: input.email,
      passWord: input.passCode,
      success: () => {},
      error: (error: any) => {
        console.error(error)
        throw error
      },
    })
  },
  error: (error: any) => {
    console.error(error)
    throw error
  },
})

So my question is.
As above, sdkKey specifies a key issued by our SDK App, and meetingNumber is the ID of the meeting or webinar hosted by the service subscriber
meetingNumber is the ID of the meeting or webinar hosted by the service subscriber.

I am able to start with this, but the following past post says I can only attend a meeting or webinar for the same account, but I am able to start a meeting or webinar for another account.

Is this a bug?

Also, in the above situation, I have been told by the person in charge of Zoom’s Japanese subsidiary that it is a violation of the terms and conditions, and in order to get around this, I am required to publish an SDK App, but
In order to publish the SDK App, I have to enter various information, for example, OAuth information in 2 and 3, but I don’t know what to enter because this SDK App does not have OAuth.
What should I enter?

Thank you in advance.

@donte.zoom
Hi, Donte

Sorry to bother you, but could you please check the contents and reply?

Best regards.

@ss-ktd Yes, you can start if you have zak (Zoom Access Key) scope enabled Zoom SDK App with OAuth.

For more please watch here → Zoom Integrations

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