How can i get WebinarToken?

Please help me where to get WebinarToken?

? I am trying to create a token. But I’m asked to enter client id. but there is no client id! . Please help me.

Hey @hortondima

Thanks for using the dev forum!

Sorry about the confusion! The paramDictionary method of of joining a meeting is actually deprecated. Instead of using paramDict, try using a MobileRTCMeetingJoinParam. Something like this:

    if let meetingService = MobileRTC.shared().getMeetingService() {

        // Set the ViewContoller to be the MobileRTCMeetingServiceDelegate
        meetingService.delegate = self

        // Create a MobileRTCMeetingJoinParam to provide the MobileRTCMeetingService with the necessary info to join a meeting.
        // In this case, we will only need to provide a meeting number and password.
        let joinMeetingParameters = MobileRTCMeetingJoinParam()
        joinMeetingParameters.meetingNumber = meetingNumber
        joinMeetingParameters.password = meetingPassword

        // Call the joinMeeting function in MobileRTCMeetingService. The Zoom SDK will handle the UI for you, unless told otherwise.
        // If the meeting number and meeting password are valid, the user will be put into the meeting. A waiting room UI will be presented or the meeting UI will be presented.
        meetingService.joinMeeting(with: joinMeetingParameters)
    }

Let me know if that works for you.
Thanks!
Michael