transferUtility.uploadData 在 iOS 模拟器上工作得很好,但在实际设备上测试时不工作 iOS13
transferUtility.uploadData works perfectly fine with iOS simulator, but not working while testing on actual device iOS13
我已经按照 https://www.youtube.com/watch?v=UMgApUhg7ic 中的一些教程将图像上传到我的 s3 存储桶。
本教程在 iOS 模拟器上运行良好,但不适用于我的测试 iphone7。我已经编写了一些调试代码来找出导致问题的原因,但是 none 出来了。
我已经搜索了一段时间关于这个问题,但是 none 其中提到了我的问题。我的代码在实际设备上而不是在模拟器上运行时是否缺少某些东西?
AppDelegate.swift
let AWS_Pool_ID = Bundle.main.object(forInfoDictionaryKey: "AWS_Pool_ID") as! String
let credentialsProvider = AWSCognitoCredentialsProvider(regionType:.APNortheast2, identityPoolId: AWS_Pool_ID)
let configuration = AWSServiceConfiguration(region:.APNortheast2, credentialsProvider:credentialsProvider)
AWSServiceManager.default().defaultServiceConfiguration = configuration
UploadViewController.swift
let transferUtility = AWSS3TransferUtility.default()
let imageData = self.image.jpegData(compressionQuality: 1.0)
let imageName = UUID().uuidString+".jpg"
let bucketName = "hello-world-bucket-name"
let progressBlock:AWSS3TransferUtilityProgressBlock = { task,progess in
DispatchQueue.main.async {
progressView.progress = Float(progess.fractionCompleted)
}
}
let expression = AWSS3TransferUtilityUploadExpression()
expression.progressBlock = progressBlock
transferUtility.uploadData(imageData!, bucket: bucketName, key: imageName, contentType: "image/jpeg", expression: expression, completionHandler: { task,error in
print("transferutility works")
if let error = error {
print(error)
} else {
let imageURL = "https://\(bucketName).s3.ap-northeast-2.amazonaws.com/\(imageName)"
self.submitData.uploads = [imageURL]
print(URL(string:imageURL)!)
}
})
这听起来像是一个权限问题。
如果您在设备上登录了您的 aws 帐户,您正在开发您的应用程序,您在后台以 "admin" 登录。
如果您从未连接到 iMac/MacBook 的真实设备启动您的应用程序,您将不再以管理员身份登录 aws-console。
默认情况下,该权限拒绝除管理员(您)之外的任何人访问您的存储桶。
出于测试目的,将存储桶权限设置为 public 并重试。
我已经按照 https://www.youtube.com/watch?v=UMgApUhg7ic 中的一些教程将图像上传到我的 s3 存储桶。
本教程在 iOS 模拟器上运行良好,但不适用于我的测试 iphone7。我已经编写了一些调试代码来找出导致问题的原因,但是 none 出来了。
我已经搜索了一段时间关于这个问题,但是 none 其中提到了我的问题。我的代码在实际设备上而不是在模拟器上运行时是否缺少某些东西?
AppDelegate.swift
let AWS_Pool_ID = Bundle.main.object(forInfoDictionaryKey: "AWS_Pool_ID") as! String
let credentialsProvider = AWSCognitoCredentialsProvider(regionType:.APNortheast2, identityPoolId: AWS_Pool_ID)
let configuration = AWSServiceConfiguration(region:.APNortheast2, credentialsProvider:credentialsProvider)
AWSServiceManager.default().defaultServiceConfiguration = configuration
UploadViewController.swift
let transferUtility = AWSS3TransferUtility.default()
let imageData = self.image.jpegData(compressionQuality: 1.0)
let imageName = UUID().uuidString+".jpg"
let bucketName = "hello-world-bucket-name"
let progressBlock:AWSS3TransferUtilityProgressBlock = { task,progess in
DispatchQueue.main.async {
progressView.progress = Float(progess.fractionCompleted)
}
}
let expression = AWSS3TransferUtilityUploadExpression()
expression.progressBlock = progressBlock
transferUtility.uploadData(imageData!, bucket: bucketName, key: imageName, contentType: "image/jpeg", expression: expression, completionHandler: { task,error in
print("transferutility works")
if let error = error {
print(error)
} else {
let imageURL = "https://\(bucketName).s3.ap-northeast-2.amazonaws.com/\(imageName)"
self.submitData.uploads = [imageURL]
print(URL(string:imageURL)!)
}
})
这听起来像是一个权限问题。
如果您在设备上登录了您的 aws 帐户,您正在开发您的应用程序,您在后台以 "admin" 登录。 如果您从未连接到 iMac/MacBook 的真实设备启动您的应用程序,您将不再以管理员身份登录 aws-console。 默认情况下,该权限拒绝除管理员(您)之外的任何人访问您的存储桶。
出于测试目的,将存储桶权限设置为 public 并重试。