2016-10-03 79 views
0

我想从UIImage上传照片,并且收到错误状态码500,“statusCode应该是200,但是是500”,有人可以帮忙或者给swift 3上传一个图像文件到服务器的另一种解决方案? 或者我如何解决这个使用ALAMOFIRE?上传照片 - 错误状态代码500 - swif 3

let imageData = UIImageJPEGRepresentation(self.images.firstObject as! UIImage, 0.9) 

let myBase64Data = imageData!.base64EncodedString(options: []) 

let request = NSMutableURLRequest(url: URL(string: "http://www.example.com/members/mobileapi/uploadSingleFile/")!) 
request.httpMethod = "POST" 
let postString = "username=tiagotest&password=test&bpo_id=248522&encoded_string=\(myBase64Data)&image_name=testFromIphone" 

request.httpBody = postString.data(using: String.Encoding.utf8) 

let task = URLSession.shared.dataTask(with: request as URLRequest) { 

    (data, response, error) in 
    guard error == nil && data != nil else {                
     print("error=\(error)") 
     return 
    } 

    if let httpStatus = response as? HTTPURLResponse , httpStatus.statusCode != 200 { 
     print("statusCode should be 200, but is \(httpStatus.statusCode)") 
     print("response = \(response)") 
    } 

    let responseString = String(data: data!, encoding: String.Encoding.utf8) 
    print(responseString!) 
} 
task.resume() 

回答

0

发生这种情况是因为Xcode出于安全原因不允许http仅https。它已被解决,包括以下代码info.plist

<key>NSAppTransportSecurity</key> 
<dict> 
    <key>NSAllowsArbitraryLoads</key> 
    <true/> 
</dict> 
相关问题