commit | author | age
|
655e66
|
1 |
/* |
H |
2 |
* Copyright (C) 2017 Twitter, Inc. |
|
3 |
* |
|
4 |
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
5 |
* you may not use this file except in compliance with the License. |
|
6 |
* You may obtain a copy of the License at |
|
7 |
* |
|
8 |
* http://www.apache.org/licenses/LICENSE-2.0 |
|
9 |
* |
|
10 |
* Unless required by applicable law or agreed to in writing, software |
|
11 |
* distributed under the License is distributed on an "AS IS" BASIS, |
|
12 |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
13 |
* See the License for the specific language governing permissions and |
|
14 |
* limitations under the License. |
|
15 |
* |
|
16 |
*/ |
a0a843
|
17 |
|
H |
18 |
#import <Foundation/Foundation.h> |
|
19 |
|
|
20 |
NS_ASSUME_NONNULL_BEGIN |
|
21 |
|
|
22 |
/** |
|
23 |
* Authentication configuration details. Encapsulates credentials required to authenticate a Twitter application. You can obtain your credentials at https://apps.twitter.com/. |
|
24 |
*/ |
|
25 |
@interface TWTRAuthConfig : NSObject |
|
26 |
|
|
27 |
/** |
|
28 |
* The consumer key of the Twitter application. |
|
29 |
*/ |
|
30 |
@property (nonatomic, copy, readonly) NSString *consumerKey; |
|
31 |
/** |
|
32 |
* The consumer secret of the Twitter application. |
|
33 |
*/ |
|
34 |
@property (nonatomic, copy, readonly) NSString *consumerSecret; |
|
35 |
|
|
36 |
/** |
|
37 |
* Returns an `TWTRAuthConfig` object initialized by copying the values from the consumer key and consumer secret. |
|
38 |
* |
|
39 |
* @param consumerKey The consumer key. |
|
40 |
* @param consumerSecret The consumer secret. |
|
41 |
*/ |
|
42 |
- (instancetype)initWithConsumerKey:(NSString *)consumerKey consumerSecret:(NSString *)consumerSecret; |
|
43 |
|
|
44 |
/** |
|
45 |
* Unavailable. Use `initWithConsumerKey:consumerSecret:` instead. |
|
46 |
*/ |
|
47 |
- (instancetype)init NS_UNAVAILABLE; |
|
48 |
|
|
49 |
@end |
|
50 |
|
|
51 |
NS_ASSUME_NONNULL_END |