首先,如果这个问题很愚蠢,我很抱歉,但我对这个问题还很陌生。我尝试了不同的方法来创建与Alamoire类似的curl请求,但是我不知道如何将图像作为多部分/表单数据发送到API。
curl -X POST -F "file=@/Users/nicolas/sample.png" -F "mode=document_photo" https://api.idolondemand.com/1/api/sync/ocrdocument/v1 -F "apikey=xxx-xxx-xxx-xxx-xxx"
我认为当前的代码对于这种类型的请求是非常错误的,但是我还是要为您发布它:
func getOCR(image: UIImage) {
let url = "https://api.idolondemand.com/1/api/sync/ocrdocument/v1"
let apiKey = "xxx-xxx-xxx-xxx-xxx"
let imageData = UIImagePNGRepresentation(image)
Alamofire.request(.POST, url, parameters: ["apikey": apiKey, "file": imageData!]).responseJSON() {
_,_,JSON in
print(JSON)
}
}
直到现在,它对我起作用的唯一方式是使用一个URL,但是由于我试图将用户使用相机拍摄的图像发送到服务器,所以我只能发送图像文件。
URL代码:
func test(url: NSURL) {
let url = "https://api.idolondemand.com/1/api/sync/ocrdocument/v1"
let apiKey = "xxx-xxx-xxx-xxx-xxx"
Alamofire.request(.POST, url, parameters: ["apikey": apiKey, "url": url]).responseJSON() {
_,JSON,_ in
print(JSON)
}
}
如果我得到回应,我会很高兴,因为这让我发疯。
PS.IM使用Swift 2.0
最佳答案
Alamoire在其documentation中有一个使用Alamofire.upload(_:URLString:headers:multipartFormData:encodingMemoryThreshold:encodingCompletion:)
的示例,看起来它可以回答您的问题(请注意,在他们的示例中,如果您不提供参数,则headers
和encodingMemoryThreshold
参数具有默认值)。
另请参阅他们关于类实例上各种appendBodyPart()
方法的文档。
因此,可以修改您提供的示例代码的方法可能是:
func getOCR(image: UIImage) {
let url = "https://api.idolondemand.com/1/api/sync/ocrdocument/v1"
let apiKey = "xxx-xxx-xxx-xxx-xxx"
let mode = "document_photo"
let imageData = UIImagePNGRepresentation(image)
Alamofire.upload(
.POST,
URLString: url,
multipartFormData: { multipartFormData in
multipartFormData.appendBodyPart(
data: apiKey.dataUsingEncoding(NSUTF8StringEncoding)!,
name: "apikey"
)
multipartFormData.appendBodyPart(
data: mode.dataUsingEncoding(NSUTF8StringEncoding)!,
name: "mode"
)
multipartFormData.appendBodyPart(
data: imageData!,
name: "file",
fileName: "testIMG.png",
mimeType: "image/png"
)
},
encodingCompletion: { encodingResult in
switch encodingResult {
case .Success(let upload, _, _):
upload.responseJSON { _, _, JSON in println(JSON) }
case .Failure(let encodingError):
println(encodingError)
}
}
)
}