gpt4 book ai didi

ios - 使用 PUT 上传 Alamofire 图片

转载 作者:可可西里 更新时间:2023-11-01 04:24:48 25 4
gpt4 key购买 nike

我目前正在尝试使用预签名 url 将图片上传到亚马逊。

它的工作方式是,我发出 GET 请求以获取预签名 URL,然后发出 PUT 请求以使用从 GET 请求返回的 URL 上传图像。

两条规则是:Content-Type 必须是 image\jpeg 并且 http 方法必须是 PUT。

因此,目前我的上传代码返回 200,但亚马逊拒绝该数据。

这是我的代码:

上传返回的实际 url 是:https://mimik-apps-channel.s3-us-west-2.amazonaws.com/profiles/2312528782074206653.jpg?X-Amz-Expires=3600&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJ36SCZW7WGBAW7CQ/20170202/us-west-2/s3/aws4_request&X-Amz-Date=20170202T102202Z&X-Amz-SignedHeaders=host&X-Amz-Signature=007ad8694fe1ed83b08d4890f17b9985e169f7ab8fcd7b0d648a383c69ebc748

                    var headers = Alamofire.SessionManager.defaultHTTPHeaders
headers["Content-Type"] = "image/jpeg"
let URL = try! URLRequest(url: url, method: .put, headers: headers)

Alamofire.upload(multipartFormData: { (multipartFormData) in
let compressionQuality: CGFloat = 0.8
guard let imageData = UIImageJPEGRepresentation(image, compressionQuality) else {
print("Unable to get JPEG representation for image \(image)")

return
}

multipartFormData.append(imageData, withName: "image.jpg", mimeType: "image/jpeg")
// code
}, with: URL, encodingCompletion: { (result) in
switch result {
case .success(let upload, _, _):
upload.responseJSON { response in
print("SUCCESS -> \(response.request?.allHTTPHeaderFields)")

}

case .failure(let encodingError):
print(encodingError)
}
})

我怀疑当我打印 http header 时,Content-Type 总是显示 multipart/form-data 而不是我需要的 image/jpeg,但目前我不知道该怎么做才能解决这个问题。

最佳答案

实际上我最近也有同样的要求(除了我需要 PNG 而不是 JPG)。

这是你如何去做的。

let compressionQuality: CGFloat = 0.8
guard let imageData = UIImageJPEGRepresentation(image, compressionQuality) else {
print("Unable to get JPEG representation for image \(image)")
return
}

let headers = [
"Content-Type": "image/jpeg"
]

// presignedUrl is a String

Alamofire.upload(imageData, to: presignedUrl, method: .put, headers: headers)
.responseData {
response in

guard let httpResponse = response.response else {
print("Something went wrong uploading")
return
}

if let publicUrl = presignedUrl.components(separatedBy: "?").first {
print(publicUrl)
}
}

关于ios - 使用 PUT 上传 Alamofire 图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42000281/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com