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
//
//  TWTRUserAuthRequestSigner.h
//  TwitterKit
//
//  Created by Kang Chen on 7/1/15.
//  Copyright (c) 2015 Twitter. All rights reserved.
//
 
@class TWTRAuthConfig;
@protocol TWTRAuthSession;
 
NS_ASSUME_NONNULL_BEGIN
 
/**
 *  Signer abstracting logic and type of user auth to sign a user authenticated network request.
 */
@interface TWTRUserAuthRequestSigner : NSObject
 
/**
 *  Signs the given request with the appropriate user authentication headers.
 *
 *  @param URLRequest URL request to sign
 *  @param authConfig The auth config containing the app's `consumerKey` and `consumerSecret`
 *  @param session    The authenticated user session
 *
 *  @return The signed URL request
 */
+ (NSURLRequest *)signedURLRequest:(NSURLRequest *)URLRequest authConfig:(TWTRAuthConfig *)authConfig session:(id<TWTRAuthSession>)session;
 
@end
 
NS_ASSUME_NONNULL_END