Skip to main content

Authentication

Authenticate

The authenticate method verifies whether the provided user token is correct, you should authenticate the framework using the following method.

parameters
  • token
    • The user token.
Errors
  • Framework not initializated or user not authenticated
MeetingDoctorsError.illegalStateException(reason: .frameworkInitializationFailed))
public static func authenticate(
token: String,
completion: @escaping @Sendable (Swift.Result<Void, any Error>) -> Void
)

Implementation example

MeetingDoctors.authenticate(token: "token") { result in
switch result {
case .success:
// Handle success
case let .failure(error):
// Handle error
}
}

The result of the authentication does not return any value beyond the verification of the operation's success or failure. Upon a successful response, the user is considered authenticated, and the MeetingDoctors environment is ready to display the user's active conversations.

Logout

Before using the logout method, ensure the SDK has been initialized. If you need to authenticate a user afterward, you can call authenticate inside the logout closure.

The logout method deletes all cached user data, including chat messages and the professional list:

parameters
  • shouldClearPushToken (default true)
    • Logout will remove from the notification center the token of the user.
errors
  • Framework not initializated or user not authenticated
MeetingDoctorsError.illegalStateException(reason: .frameworkInitializationFailed))
public class func logout(
shouldClearPushToken: Bool = true,
completion: @escaping @Sendable (Result<Void, any Error>) -> Void
)

Implementation example

MeetingDoctors.logout() { result in
switch result {
case .success:
// Handle success
case let .failure(error):
// Handle error
}
}