You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when starting SDK in Webex integration SDK I did not return callback on the device but work fine simulation
webex.initialize { result in
if result {
print("User is authorized")
self.webxIntegration()
} else {
authenticator.authorize(parentViewController: self) { result in
if result == .success {
print("Login successful")
self.webxIntegration()
} else {
print("Login failed")
}
}
}
}
The text was updated successfully, but these errors were encountered:
when starting SDK in Webex integration SDK I did not return callback on the device but work fine simulation
The text was updated successfully, but these errors were encountered: