Skip to content
This repository has been archived by the owner on Aug 25, 2018. It is now read-only.

mrbagels/Twitter-Reverse-Auth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Twitter-Reverse-Auth

Twitter Reverse Auth made easy with a single method!

Open SecretKeys.h and add your Token and Token Secret

Simply include TwitterHelper.h and use the following method:

[TwitterHelper getCredentialsForAccount:self.userAccount completion:^(NSDictionary *credentials, NSError *error) {
    if (!error && credentials) {
        // Send these credentials to your server
    } else {
        // Something went wrong! Handle it!
        NSLog(@"Reverse Auth process failed. Error returned was: %@\n", [error localizedDescription]);
    }
}];

Be sure to import all files into your project. This class uses AFNetworking.

About

Twitter Reverse Auth made easy with a single method!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published