Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Trying to access error code in Alamofire

I am using an Alamofire 4. When I do

print(response.debugDescription)

I have something like this in the console:

[Request]: https://api2.website.com
[Response]: nil
[Data]: 0 bytes
[Result]: FAILURE: Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo={NSUnderlyingError=0x17444ace0 {Error Domain=kCFErrorDomainCFNetwork Code=-1009 "(null)" UserInfo={NSErrorPeerAddressKey=<CFData 0x170490e50 [0x1ab165bb8]>{length = 16, capacity = 16, bytes = 0x100201bb341d1f890000000000000000}, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, NSErrorFailingURLStringKey=https://api2.flowwow.com/api2/client/info/?auth_token=da88d8aa49ff6f8bb4e1&hash=7f38be3f68db39a6d88687505fdb9ba5&partner_id=1004, NSErrorFailingURLKey=https://api2.website.com, _kCFStreamErrorDomainKey=1, _kCFStreamErrorCodeKey=57, NSLocalizedDescription=The Internet connection appears to be offline.}
[Timeline]: Timeline: { "Request Start Time": 510763454.078, "Initial Response Time": 510763455.293, "Request Completed Time": 510763455.293, "Serialization Completed Time": 510763455.297, "Latency": 1.215 secs, "Request Duration": 1.215 secs, "Serialization Duration": 0.005 secs, "Total Duration": 1.220 secs }

And there is a particular line which interests me:

Error Domain=NSURLErrorDomain Code=-1009

How can I get this Code so I can handle the error correctly. I tried all combinations I could make up but there is no trace of this code anywhere.

like image 718
Eduard Avatar asked Dec 15 '22 00:12

Eduard


2 Answers

when you make calls with Alamofire, it returns a response where you can check for any errors. This is a simple example of error handling call with Alamofire.

Alamofire.request("https://your.url.com").responseJSON { response in
    if (response.result.isSuccess){
        //do your json stuff
    } else if (response.result.isFailure) {
        //Manager your error
        switch (response.error!._code){
            case NSURLErrorTimedOut:
                //Manager your time out error
                break
            case NSURLErrorNotConnectedToInternet:
                //Manager your not connected to internet error
                break
            default:
                //manager your default case 
            }
    }
}

Enjoy :)

Updated on 1st April 2020

This code should works on Alamofire 5 version. I still didn't check, let me know if this works

AF.request(route).responseJSON { (response) in
    let result = response.result
    switch result {
    case .success(let value):
        print("Success")
        // Do something with value
    case .failure(let error):

        if let underlyingError = error.underlyingError {
            if let urlError = underlyingError as? URLError {
                switch urlError.code {
                case .timedOut:
                    print("Timed out error")
                case .notConnectedToInternet:
                    print("Not connected")
                default:
                    //Do something
                    print("Unmanaged error")
                }
            }
        }
    }
}

I hope this works :)

like image 142
Alessandro Avatar answered Dec 16 '22 12:12

Alessandro


Alamofire request sample

let request = Alamofire.request(urlString,
                                               method: method,
                                               parameters: parameters,
                                               encoding: encoding,
                                               headers: defaultHeaders())

/// Response Status code 
/// This status code will be the response’s HTTP status code.
request.responseJSON { response in
        if let code = response.response?.statusCode {
            NSLog("  Received response: \(code) \(HTTPURLResponse.localizedString(forStatusCode: code))")
        }
        switch response.result {
        case .success:
            /// Parse data
            parseData(rawdata: response.data, completion: completion)
        case .failure(let error):
            parseFailure(response, error, completion)
        }
    }

Hope this helps!!

like image 31
Sumit Avatar answered Dec 16 '22 14:12

Sumit