hank
2017-06-14 a0a84333e64f1e94ae9d0f69545037c60e781842
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  TWTRAppAuthProvider.h
//
//  Created by Alden Keefe Sampson on 4/2/14.
//  Copyright (c) 2014 Twitter. All rights reserved.
//
 
#import "TWTRAuthenticationProvider.h"
 
@class TWTRAuthConfig;
@protocol TWTRAPIServiceConfig;
 
@interface TWTRAppAuthProvider : TWTRAuthenticationProvider
 
- (instancetype)init __unavailable;
 
- (instancetype)initWithAuthConfig:(TWTRAuthConfig *)authConfig apiServiceConfig:(id<TWTRAPIServiceConfig>)apiServiceConfig;
 
/**
 *  Authenticate with App Auth
 *
 *  @param completion (required) The completion that will be called upon success or error.
 *                               Will be called on an arbitrary queue.
 */
- (void)authenticateWithCompletion:(TWTRAuthenticationProviderCompletion)completion;
 
@end