使用 AFHTTPSessionManager 和身份验证下载文件

Download a file with AFHTTPSessionManager and with authentication

我正在开发一个使用 OAuth2 身份验证的 iOS 应用程序。

我已通过身份验证,请求我的 API 没问题,但我在尝试从受保护的 URLS.

下载某些文件时遇到问题

我正在使用来自 AFURLSessionManager (AFNetworking) 的 downloadTaskWithRequest。它 returns 总是错误 401(未授权),就好像我没有登录一样。

如果我使用 GET 方法,我可以毫无问题地访问此 URL,但我想使用 downloadTaskWithRequest,因为它允许我有一个进度指示器。

这是我的代码(不起作用):

NSURLSessionDownloadTask *downloadTask = [apiC downloadTaskWithRequest:request progress:nil destination:^NSURL *(NSURL *targetPath, NSURLResponse *response) {
     NSURL *dstPath = [NSURL fileURLWithPath:dstFilePath];
    return dstPath;

} completionHandler:^(NSURLResponse *response, NSURL *filePath, NSError *error) {

    // HERE I HAVE A 401
}];

这是我的代码,确实有效:

[[OEOApiClient sharedClient] GET:url parameters:nil success:^(NSURLSessionDataTask *task, id responseObject) {
    // SUCCEDD !!
} failure:^(NSURLSessionDataTask *task, NSError *error) {
}];

downloadTaskWithRequest不支持认证吗?我做错了什么吗?

您正在创建并传递给 downloadTaskWithRequest:…request 与您在 GET:parameters:… 中的请求序列化程序生成的不同。

查看 GET:parameters:… 的实现,了解 AFNetworking 如何使用请求序列化器生成请求。然后使用相同的代码制作经过身份验证的请求对象以传递给 downloadTaskWithRequest:….

好的,我创建请求的方式有误:

NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:url]];

这是个好方法:

NSURLRequest *request = [mySessionManager.requestSerializer requestWithMethod:@"GET" URLString:url parameters:nil error:&serializationError];