我正在尝试让S3TransferUtilitySampleObjC项目与我的、和AWS凭据一起工作。
不幸的是,我得到了下面的错误:
AWSURLSessionManager.m line:566 | -[AWSURLSessionManager printHTTPHeadersForResponse:] | Response headers:
{
Connection = "keep-alive";
"Content-Length" = 111;
"Content-Type" = "application/x-amz-json-1.1";
Date = "Mon, 16 Jan 2017 17:17:50 GMT";
"x-amzn-ErrorMessage" = "Unauthenticated access is not supported for this identity pool.";
"x-amzn-ErrorType" = "NotAuthorizedException:";
"x-amzn-RequestId" = "xxxxxxxxx-xxxxx-xxxxx-xxxx-xxxxxxx";
}你能帮忙吗?
代码(请注意,我只从SecondViewController中删除了一些代码并以常量修改了值--我还修改了Info.plist文件(见下面的屏幕快照)。
目前,我只关注于从我的桶下载文件。因此,我只修改了以下内容:
// In Constants.m
NSString *const S3BucketName = @"mybucketname";
NSString *const S3DownloadKeyName = @"config.plist";
// In SecondViewController.m
#import "SecondViewController.h"
#import "AppDelegate.h"
#import <AWSS3/AWSS3.h>
#import "Constants.h"
@interface SecondViewController ()
@property (weak, nonatomic) IBOutlet UIImageView *imageView;
@property (weak, nonatomic) IBOutlet UIProgressView *progressView;
@property (weak, nonatomic) IBOutlet UILabel *statusLabel;
@property (copy, nonatomic) AWSS3TransferUtilityDownloadCompletionHandlerBlock completionHandler;
@property (copy, nonatomic) AWSS3TransferUtilityProgressBlock progressBlock;
@end
@implementation SecondViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.progressView.progress = 0;
self.statusLabel.text = @"Ready";
__weak SecondViewController *weakSelf = self;
self.completionHandler = ^(AWSS3TransferUtilityDownloadTask *task, NSURL *location, NSData *data, NSError *error) {
dispatch_async(dispatch_get_main_queue(), ^{
if (error) {
weakSelf.statusLabel.text = @"Failed to Download";
}
if (data) {
weakSelf.statusLabel.text = @"Successfully Downloaded";
weakSelf.imageView.image = [UIImage imageWithData:data];
weakSelf.progressView.progress = 1.0;
}
});
};
self.progressBlock = ^(AWSS3TransferUtilityTask *task, NSProgress *progress) {
dispatch_async(dispatch_get_main_queue(), ^{
weakSelf.progressView.progress = progress.fractionCompleted;
});
};
AWSS3TransferUtility *transferUtility = [AWSS3TransferUtility defaultS3TransferUtility];
[transferUtility enumerateToAssignBlocksForUploadTask:nil downloadTask:^(AWSS3TransferUtilityDownloadTask * _Nonnull downloadTask, AWSS3TransferUtilityProgressBlock _Nullable __autoreleasing * _Nullable downloadProgressBlockReference, AWSS3TransferUtilityDownloadCompletionHandlerBlock _Nullable __autoreleasing * _Nullable completionHandlerReference) {
NSLog(@"%lu", (unsigned long)downloadTask.taskIdentifier);
*downloadProgressBlockReference = weakSelf.progressBlock;
*completionHandlerReference = weakSelf.completionHandler;
dispatch_async(dispatch_get_main_queue(), ^{
self.statusLabel.text = @"Uploading...";
});
}];
}
- (IBAction)start:(id)sender {
self.imageView.image = nil;
AWSS3TransferUtilityDownloadExpression *expression = [AWSS3TransferUtilityDownloadExpression new];
expression.progressBlock = self.progressBlock;
AWSS3TransferUtility *transferUtility = [AWSS3TransferUtility defaultS3TransferUtility];
[[transferUtility downloadDataFromBucket:S3BucketName
key:S3DownloadKeyName
expression:expression
completionHander:self.completionHandler] continueWithBlock:^id(AWSTask *task) {
if (task.error) {
NSLog(@"Error: %@", task.error);
}
if (task.exception) {
NSLog(@"Exception: %@", task.exception);
}
if (task.result) {
dispatch_async(dispatch_get_main_queue(), ^{
self.statusLabel.text = @"Downloading...";
});
}
return nil;
}];
}修改为:Info.plist文件:

发布于 2017-01-16 19:02:43
您所得到的错误是解释这个问题--您是以未经身份验证的用户身份向科尼图发送请求,这意味着没有包含/链接到该标识的登录,而池中没有启用登录。
未经身份验证的标识是身份池的一个opt特性,您必须在从认知控制台创建/编辑您的池时启用它。
https://stackoverflow.com/questions/41681848
复制相似问题