Skip to content

Instantly share code, notes, and snippets.

@ethanmick
Created December 14, 2012 18:59
Show Gist options
  • Save ethanmick/4287692 to your computer and use it in GitHub Desktop.
Save ethanmick/4287692 to your computer and use it in GitHub Desktop.
Link social account using iOS Framework for CloudMine
// In MyLoginViewController.m
- (IBAction)loginWithSocial {
[_user loginWithSocialNetwork:CMSocialNetworkGithub viewController:self params:@{@"scope" : @"gist"} callback:^(CMUserAccountResult resultCode, NSArray *messages) {
if (resultCode == CMUserAccountLoginSucceeded) {
NSLog(@"We have successfully logged in!");
}
}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment