TwitterReverseAuth 1.0

TwitterReverseAuth 1.0

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by Jeong YunWon.



 
Depends on:
AFNetworking~> 1.3.4
STLOAuth>= 0
 

  • By
  • Kyle Begeman

Twitter-Reverse-Auth

Twitter Reverse Auth made easy with a single method!

Implement delegate methods to provide API token and secret.

Cocoapods available.

ACAccount *account = // your account from ACAccountStore
TwitterReverseAuth *auth = [[TwitterReverseAuth alloc] initWithDelegate:self];
[auth requestCredentialsForAccount:account completion:^(NSDictionary *credentials, NSError *error) {
    if (credentials.count > 0) {
        NSLog(@"credential: %@", credentials);
    } else {
        NSLog(@"error: %@", error);
    }
}];