I am trying to upload a photo from a UIImage and I am receiving an error statuscode 500, "statusCode should be 200, but is 500", Can someone help with that or maybe give another solution to upload a image file to a server in swift 3? OR HOW DO I SOLVE THIS USING ALAMOFIRE?
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()
That was happening because Xcode doesnt allow http only https for security reasons. It was solved including the code below in info.plist
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>