commit | author | age
|
a0a843
|
1 |
// |
H |
2 |
// TWTRGuestAuthProvider.h |
|
3 |
// TwitterKit |
|
4 |
// |
|
5 |
// Created by Kang Chen on 1/27/15. |
|
6 |
// Copyright (c) 2015 Twitter. All rights reserved. |
|
7 |
// |
|
8 |
|
|
9 |
@class TWTRAuthConfig; |
|
10 |
@protocol TWTRAPIServiceConfig; |
|
11 |
#import "TWTRAuthenticationProvider.h" |
|
12 |
|
|
13 |
/** |
|
14 |
Manages activation of new guest tokens. |
|
15 |
|
|
16 |
@see TWTRAuthenticator |
|
17 |
*/ |
|
18 |
@interface TWTRGuestAuthProvider : TWTRAuthenticationProvider |
|
19 |
|
|
20 |
- (instancetype)init __unavailable; |
|
21 |
- (instancetype)initWithAuthConfig:(TWTRAuthConfig *)authConfig apiServiceConfig:(id<TWTRAPIServiceConfig>)apiServiceConfig accessToken:(NSString *)accessToken __attribute__((nonnull(1, 2)))NS_DESIGNATED_INITIALIZER; |
|
22 |
|
|
23 |
@end |