Logging Out of Huawei Cloud Meeting
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 HWMSDKCompleteHandler)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. |
Sample Code
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."); } }]; } |
Feedback
Was this page helpful?
Provide feedbackThank 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