Authentication
Authenticate User (Optional)
#import <TapTalkLive/TapTalkLive.h>
[[TapTalkLive sharedInstance] authenticateUserWithFullName:NAME
email:EMAIL
success:^(NSString *message) {
// Successfully authenticated user
}
failure:^(NSError *error) {
}];Authenticate with Auth Ticket (Optional)
#import <TapTalkLive/TapTalkLive.h>
[[TapTalkLive sharedInstance] requestAccessTokenWithAuthTicket:AUTH_TICKET
success:^(NSString *message) {
// Successfully authenticated user
}
failure:^(NSError *error) {
}];Logout
Logout and Clear TapTalkLive Data
Last updated