Issue after upgrading Meeting SDK

,

We are facing issues, after updating zoom meeting SDK in iOS. Previously we were using 5.0, then updated to 5.16.5. After this update we are not able to join the meetings. Following is the code which are using to join the meeting.

//Zoom Sdk:  2
func zoomSDKSetup(){
            let zoomSDKKey = ZoomConts.clientKey
            let zoomSDKSecret = ZoomConts.clientSecret
            let context = MobileRTCSDKInitContext()
            context.domain = "zoom.us"
            context.enableLog = true


            let sdkInitializedSuccessfully = MobileRTC.shared().initialize(context)

            if sdkInitializedSuccessfully == true, let authorizationService = MobileRTC.shared().getAuthService() {
            print("Current ZOOM Verison IS: ", MobileRTC.shared().mobileRTCVersion())

                authorizationService?.clientKey = zoomSDKKey
                authorizationService?.clientSecret = zoomSDKSecret
                authorizationService.delegate = self
                authorizationService.sdkAuth()
            }
        }

What could be wrong?

Thank you.

@spediadev ,

            authorizationService?.clientKey = zoomSDKKey
            authorizationService?.clientSecret = zoomSDKSecret
            authorizationService.delegate = self
            authorizationService.sdkAuth()

You can no longer use clientKey and clientSecret directly in Meeting SDK starting from 5.14.

You will need to generate a Signature using your SDK Key and SDK Secret for SDK Authentication

how can generate a Signature using your SDK Key and SDK Secret for SDK Authentication?
Could you elaborate more and share the steps for that.

@govindpatidar5993 this should provide you with the information

@chunsiong.zoom, Could you please share the latest sample code in swift language? For the zoom meeting SDK. We need user authenticate without using JWT token, this was an previous approach but currently only authonticate using the SDK Key and SDK Secret.