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
32
33
34
35
//
//  TWTRNetworking.h
//  TWTRNetworking
//
//  Created by Mustafa Furniturewala on 4/7/14.
//  Copyright (c) 2014 Twitter. All rights reserved.
//
 
#import <Foundation/Foundation.h>
@class TWTRAuthConfig;
/**
 *  Completion block called when the network request succeeds or fails.
 *
 *  @param response        Metadata associated with the response to a URL load request.
 *  @param data            Content data of the response.
 *  @param connectionError Error object describing the network error that occurred.
 */
typedef void (^TWTRTwitterNetworkCompletion)(NSURLResponse *response, NSData *data, NSError *connectionError);
 
@interface TwitterNetworking : NSObject
 
@property (nonatomic, readonly) TWTRAuthConfig *authConfig;
 
- (instancetype)init __unavailable;
- (instancetype)initWithAuthConfig:(TWTRAuthConfig *)authConfig;
 
- (NSURLRequest *)GET:(NSString *)URLString parameters:(NSDictionary *)parameters;
- (NSURLRequest *)POST:(NSString *)URLString parameters:(NSDictionary *)parameters;
- (NSURLRequest *)DELETE:(NSString *)URLString parameters:(NSDictionary *)parameters;
 
- (NSURLRequest *)URLRequestWithMethod:(NSString *)method URL:(NSString *)URLString parameters:(NSDictionary *)parameters;
 
- (void)sendAsynchronousRequest:(NSURLRequest *)request completion:(TWTRTwitterNetworkCompletion)completion;
 
@end