File was renamed from frameworks/TwitterCore.framework/PrivateHeaders/TWTRAppAPIClient.h |
| | |
| | | * |
| | | */ |
| | | |
| | | /** |
| | | This header is private to the Twitter Core SDK and not exposed for public SDK consumption |
| | | */ |
| | | |
| | | #import "TWTRNetworking.h" |
| | | #import "TwitterNetworking.h" |
| | | |
| | | @class TWTRAuthConfig; |
| | | |
| | |
| | | |
| | | If you have a logged in user, use TwitterUserAPIClient. |
| | | */ |
| | | @interface TWTRAppAPIClient : TWTRNetworking |
| | | @interface TwitterAppAPIClient : TwitterNetworking |
| | | |
| | | // The application only access token |
| | | @property (nonatomic, copy, readonly) NSString *accessToken; |
| | | @property (nonatomic, readonly) NSString *accessToken; |
| | | |
| | | /** |
| | | Designated initializer. Returns nil if access token is missing. |
| | | @param accessToken An application only access token. |
| | | */ |
| | | - (instancetype)initWithAuthConfig:(TWTRAuthConfig *)authConfig accessToken:(NSString *)accessToken; |
| | | - (instancetype)initWithAuthConfig:(TWTRAuthConfig *)authConfig NS_UNAVAILABLE; |
| | | - (instancetype)initWithAuthConfig:(TWTRAuthConfig *)authConfig __unavailable; |
| | | |
| | | @end |