0

我想使用我的 http 标头If-None-Match,但我不知道如何使用 AFNetworking 3.0

迁移指南对此没有任何解释,基本上只是说使用似乎对我没有帮助的正常GET请求。

这是我使用 AFNetworking 2 所做的:

let getAvatarRequest = NSURLRequest(URL: avatarUrl!, cachePolicy: .ReloadIgnoringLocalCacheData, timeoutInterval: 60).mutableCopy()    
getAvatarRequest.setValue(avatarImageETag!, forHTTPHeaderField: "If-None-Match")

谢谢你的帮助。

4

3 回答 3

1

好的,我找到了答案,实际上没有任何改变,但这并不明显,这是代码:

let configuration = NSURLSessionConfiguration.defaultSessionConfiguration()
let manager = AFURLSessionManager(sessionConfiguration: configuration)

let request = NSMutableURLRequest(URL: remoteFileURL!)
request.setValue("", forHTTPHeaderField: "If-None-Match")
let downloadTask = manager.downloadTaskWithRequest(request, progress: nil, destination: { (targetURL: NSURL, response: NSURLResponse) -> NSURL in
    // Success
}, completionHandler: { (response: NSURLResponse, filePath: NSURL?, error: NSError?) -> Void in
    // Error
})
downloadTask.resume()
于 2015-12-16T18:02:40.453 回答
0

警告离题答案 但在某些情况下,您可以决定无法使用 AFNetworking。我的任务只是从自定义 API 下载文件。对于访问,我将"x-token"在标头中的键上使用令牌。AFNetworking 不仅仅适用于下载,在 GET/POST 请求中一切都很棒!

// we use "x-token" to acces
self.tokenSessionManager = [AFHTTPSessionManager manager];
((AFJSONResponseSerializer *)_tokenSessionManager.responseSerializer).removesKeysWithNullValues = YES;
[_tokenSessionManager.requestSerializer setValue:self.user.token forHTTPHeaderField:@"x-token"];
// it works perfect in other GET/POST requests but not in downloading


 NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:item.urlString]];
// try to set it directly in request
NSString *key = @"x-token";
[request setValue:[self.tokenSessionManager.requestSerializer valueForHTTPHeaderField:key] forHTTPHeaderField:key];
[[self.tokenSessionManager downloadTaskWithRequest:request progress:nil destination:^NSURL *(NSURL *targetPath, NSURLResponse *response) {
    return [NSURL URLWithString:filePath];
} completionHandler:^(NSURLResponse *response, NSURL *urlPath, NSError *error) {
    NSLog(@"Failure");
}] resume];

你可以尝试使用NSURLSessionNSURLRequest

NSURLSessionConfiguration *sessionConfiguration = [NSURLSessionConfiguration defaultSessionConfiguration];
NSString *key = @"x-token";
sessionConfiguration.HTTPAdditionalHeaders = @{key:[self.tokenSessionManager.requestSerializer valueForHTTPHeaderField:key]};
NSURLSession *session = [NSURLSession sessionWithConfiguration:sessionConfiguration];

NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:item.urlString]];
[[session downloadTaskWithRequest:request completionHandler:^(NSURL * _Nullable location, NSURLResponse * _Nullable response, NSError * _Nullable error) {
    NSLog(@"Success");
}] resume];
于 2017-09-02T02:01:28.243 回答
-4

这是来自自述文件

全局请求方法直接支持向请求添加自定义 HTTP 标头。这使得将 HTTP 标头附加到可以不断变化的请求上变得很容易。

对于不改变的 HTTP 头,建议在 NSURLSessionConfiguration 上设置它们,以便它们自动应用于由底层 NSURLSession 创建的任何 NSURLSessionTask。

let headers = [
    "Authorization": "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==",
    "Content-Type": "application/x-www-form-urlencoded"
]

Alamofire.request(.GET, "https://httpbin.org/get", headers: headers)
     .responseJSON { response in
         debugPrint(response)
     }
于 2015-12-16T17:16:24.923 回答