TWTRAuthConfig Class Reference
Inherits from | NSObject |
---|---|
Declared in | TWTRAuthConfig.h |
Overview
Authentication configuration details. Encapsulates credentials required to authenticate a Twitter application. You can obtain your credentials at https://apps.twitter.com/.
consumerKey
The consumer key of the Twitter application.
@property (nonatomic, copy, readonly) NSString *consumerKey
Declared In
TWTRAuthConfig.h
consumerSecret
The consumer secret of the Twitter application.
@property (nonatomic, copy, readonly) NSString *consumerSecret
Declared In
TWTRAuthConfig.h
– initWithConsumerKey:consumerSecret:
Returns an TWTRAuthConfig
object initialized by copying the values from the consumer key and consumer secret.
- (instancetype)initWithConsumerKey:(NSString *)consumerKey consumerSecret:(NSString *)consumerSecret
Parameters
consumerKey |
The consumer key. |
---|---|
consumerSecret |
The consumer secret. |
Declared In
TWTRAuthConfig.h
– init
Unavailable. Use initWithConsumerKey:consumerSecret:
instead.
- (instancetype)init
Declared In
TWTRAuthConfig.h