Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 323 Bytes

doc_ios_auth.md

File metadata and controls

19 lines (15 loc) · 323 Bytes

Authenticating a user

Logging In/Out (Swift)

self.authClient.login({
    // Callback is executed once the user is logged in
}]);

self.authClient.logout()

Logging In/Out (Objective-C)

[self.authClient login:^{
    // Block is executed once the user is logged in
}];

[self.authClient logout];