Zoomtopia is here. Unlock the transformative power of generative AI, helping you connect, collaborate, and Work Happy with AI Companion.
Register nowEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Learn moreKeep your Zoom app up to date to access the latest features.
Download Center Download the Zoom appDownload hi-res images and animations to elevate your next Zoom meeting.
Browse Backgrounds Zoom Virtual BackgroundsEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Zoom AI Companion2024-03-28 10:59 PM
``func setUpZoomMetting() {
debugPrint("call View Didload")
initZoomParams.domain = "https://zoom.us"
initZoomParams.enableLog = true
let sdkInitReturnStatus = ZoomVideoSDK.shareInstance()?.initialize(initZoomParams)
switch sdkInitReturnStatus {
case .Errors_Success:
debugPrint(" *** SDK initialized successfully")
ZoomVideoSDK.shareInstance()?.delegate = self
assignTokenAndDetailForJoinSession()
default:
if let error = sdkInitReturnStatus {
debugPrint("*** SDK failed to initialize: \(error)")
}
}
}``
``func assignTokenAndDetailForJoinSession() {
let sessionContext = ZoomVideoSDKSessionContext()
sessionContext.token = zoomSessionToken
sessionContext.sessionName = zoomSessionName
sessionContext.userName = zoomUserName
if let session = ZoomVideoSDK.shareInstance()?.joinSession(sessionContext) {
debugPrint("Session joined successfully.")
startPreview()
} else {
debugPrint("joinSession: failed.")
}
}``
- Request :- I require your insights or assistance in identifying and resolving this initialization issue. For reference, I have attached the relevant codebase.
2024-03-29 07:13 AM
Hi @rutika11
This question would be better suited for the Zoom Developer's Forum, a dedicated forum for API, SDK, and other developer's questions. That forum can be found here: https://devforum.zoom.us/