0

尝试使用 AFNetworking / AFAmazonS3Client 将文件上传到 Amazon 时出现以下错误

s3Client = [[AFAmazonS3Client alloc] initWithAccessKeyID:@"mykey" secret:@"mysecretkey"];
s3Client.bucket = @"media.mysite.com";

[s3Client postObjectWithFile:video.assetPath destinationPath:@"/media/videos/" parameters:nil progress:

 ^(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite){

     DLog(@"%f%% Uploaded", (totalBytesWritten / (totalBytesExpectedToWrite * 1.0f) * 100));
 }

                     success:^(id responseobject){

                         DLog(@"Success");
                         [self deleteAsset:video];

                     }failure:^(NSError* error){

                          DLog(@"Failed %@", error);
                         [self updateVideoAsset:video.assetID key:@"uploadStatus" value:[NSNumber numberWithInt:ESUploadNotStarted]];
                     }];

此服务器的证书无效。您可能正在连接到伪装成“media.myserver.com.s3.amazonaws.com”的服务器,这可能会使您的机密信息面临风险

如何解决这个问题

谢谢东姑

4

2 回答 2

0

适用于 iOS 的 AWS 开发工具包(旧版本)中似乎存在一些可能导致此问题的问题:https ://forums.aws.amazon.com/message.jspa?messageID=248288

于 2013-03-07T21:30:54.873 回答
0

以防其他人偶然发现:使用其中不带句点的存储桶名称(例如media-mysite-com)。这样,亚马逊的通配符 SSL 证书仍然适用,您将避免错误。

参见例如如何为 Amazon S3 存储桶配置 SSL

于 2014-04-20T08:45:49.337 回答