CURL with Alamofire - Swift - multipart / form-data

时间:2015-08-05 14:00:24

标签: swift curl multipartform-data swift2 alamofire

首先,我很抱歉,如果这个问题是愚蠢的,但我对这个东西很新。我尝试过用Alamofire创建快速等效的cURL请求,但我不知道如何将图像作为multipart / form-data发送到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,但由于我尝试将图像发送到用户使用相机拍摄的服务器,我只能发送图像文件。

网址代码:

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。我使用swift 2.0

1 个答案:

答案 0 :(得分:6)

Alamofire在documentation使用Alamofire.upload(_:URLString:headers:multipartFormData:encodingMemoryThreshold:encodingCompletion:)时有一个示例,看起来它会回答您的问题(请注意,在他们的示例中,headersencodingMemoryThreshold参数有一个默认值,如果你不提供)。

另请参阅有关MultipartFormData类实例上各种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)
      }
    }
  )
}