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
//
//  TWTRAPIServiceConfig.h
//  TwitterCore
//
//  Copyright (c) 2015 Twitter Inc. All rights reserved.
//
 
@protocol TWTRAPIServiceConfig <NSObject>
 
@property (nonatomic, readonly, copy) NSString *apiHost;
@property (nonatomic, readonly, copy) NSString *apiScheme;
 
/**
 * A unique name to assign to this service. It is recommended
 * that reverse dns be used to make the name unique.
 */
@property (nonatomic, readonly, copy) NSString *serviceName;
 
@end
 
FOUNDATION_EXPORT NSURL *TWTRAPIURLWithPath(id<TWTRAPIServiceConfig> apiServiceConfig, NSString *path);
 
FOUNDATION_EXPORT NSURL *TWTRAPIURLWithParams(id<TWTRAPIServiceConfig> apiServiceConfig, NSString *path, NSDictionary *params);