Skip to content

OAuth2 authentication helper based on AFNetworking's AFHTTPSessionManager

License

Notifications You must be signed in to change notification settings

dailymotion/GROAuth2SessionManager

 
 

Repository files navigation

GROAuth2SessionManager

WARNING: this is a fork that forces the use of digest to exchange client secret.

GROAuth2SessionManager is an extension for AFNetworking that greatly simplifies the process of authenticating against an OAuth 2 provider. It is based in the AFOAuth2Client, but with some changes to support AFNetworking 2.

Example Usage

NSURL *url = [NSURL URLWithString:@"http://example.com/"];
GROAuth2SessionManager *sessionManager = [GROAuth2SessionManager managerWithBaseURL:url clientID:kClientID secret:kClientSecret];

[sessionManager authenticateUsingOAuthWithPath:@"/oauth/token"
                                   username:@"username"
                                   password:@"password"
                                      scope:@"email"
                                    success:^(AFOAuthCredential *credential) {
                                        NSLog(@"I have a token! %@", credential.accessToken);
                                        [AFOAuthCredential storeCredential:credential withIdentifier:sessionManager.serviceProviderIdentifier];
                                    }
                                    failure:^(NSError *error) {
                                        NSLog(@"Error: %@", error);
                                    }];

Documentation

Documentation for all releases of GROAuth2SessionManager, including the latest, are available on CocoaDocs.

Contact

Gabriel Rinaldi

Mattt Thompson

License

GROAuth2SessionManager is available under the MIT license. See the LICENSE file for more info.

Bitdeli Badge

About

OAuth2 authentication helper based on AFNetworking's AFHTTPSessionManager

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 97.2%
  • Ruby 2.8%