Logout
logout
API Description
This API is used to log out of a meeting account.
Precautions
- Call this API only when you have logged in.
- error: Error information. nil: Success.
Method Definition
1 | - (void)logout:(_Nonnull HWMSDKLogoutCompleteHandler)callback; |
Parameter Description
None
Return Values
| Parameter | Type | Description |
|---|---|---|
| userUuid | NSString * | Account UUID. |
| account | NSString * | Login account. |
| thirdAccount | NSString * | Third-party account for login using an app ID. |
1 2 3 4 5 6 7 8 9 10 | /// Logout - (void)logout { [[HWMSdk getOpenApi] logout:^(NSError * _Nullable error, HWMLogoutResult * _Nullable result) { if (error == nil) { NSLog(@"Logout succeeded."); } else { NSLog(@"Logout failed."); } }]; } |
What is your overall rating for this page?
Thank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot