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
28
29
30
31
//
//  TWTRTokenOnlyAuthSession.h
//  TwitterCore
//
//  Created by Chase Latta on 6/12/15.
//  Copyright (c) 2015 Twitter. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import "TWTRAuthSession.h"
 
NS_ASSUME_NONNULL_BEGIN
 
@interface TWTRTokenOnlyAuthSession : NSObject <TWTRAuthSession>
 
@property (nonatomic, copy, readonly) NSString *authToken;
 
@property (nonatomic, copy, readonly) NSString *authTokenSecret;
 
/**
 * This value is here to satisfy TWTRAuthSession protocol but
 * it defaults to an empty string and cannot be updated.
 */
@property (nonatomic, copy, readonly) NSString *userID;
 
- (instancetype)initWithToken:(NSString *)authToken secret:(NSString *)authTokenSecret;
+ (instancetype)authSessionWithToken:(NSString *)authToken secret:(NSString *)authTokenSecret;
 
@end
 
NS_ASSUME_NONNULL_END