// // MPOAuthAuthenticationMethodOAuth.h // MPOAuthConnection // // Created by Karl Adam on 09.12.19. // Copyright 2009 matrixPointer. All rights reserved. // #import #import "MPOAuthAuthenticationMethod.h" #import "MPOAuthAPI.h" #import "MPOAuthAPIRequestLoader.h" extern NSString * const MPOAuthNotificationRequestTokenReceived; extern NSString * const MPOAuthNotificationRequestTokenRejected; @protocol MPOAuthAuthenticationMethodOAuthDelegate; @interface MPOAuthAuthenticationMethodOAuth : MPOAuthAuthenticationMethod { NSURL *oauthRequestTokenURL_; NSURL *oauthAuthorizeTokenURL_; BOOL oauth10aModeActive_; id delegate_; } @property (nonatomic, readwrite, assign) id delegate; @property (nonatomic, readwrite, retain) NSURL *oauthRequestTokenURL; @property (nonatomic, readwrite, retain) NSURL *oauthAuthorizeTokenURL; - (void)authenticate; @end @protocol MPOAuthAuthenticationMethodOAuthDelegate - (NSURL *)callbackURLForCompletedUserAuthorization; - (BOOL)automaticallyRequestAuthenticationFromURL:(NSURL *)inAuthURL withCallbackURL:(NSURL *)inCallbackURL; @optional - (NSString *)oauthVerifierForCompletedUserAuthorization; - (void)authenticationDidFailWithError:(NSError *)error; @end