hank
2017-06-14 3f9b5125cd79f60e878a3f93708d1254048fd1fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  TWTRAuthorizationProvider.h
//  TWTRAuthentication
//
//  Created by Mustafa Furniturewala on 2/5/14.
//  Copyright (c) 2014 Mustafa Furniturewala. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
typedef void (^TWTRAuthenticationProviderCompletion)(NSDictionary *responseObject, NSError *error);
 
@interface TWTRAuthenticationProvider : NSObject
 
/**
 *  Authenticate with the Twitter API
 *
 *  @param completion (required) The completion block to be called upon succes or failure.
 *                               Will be called on an arbitrary queue.
 */
- (void)authenticateWithCompletion:(TWTRAuthenticationProviderCompletion)completion;
 
@end