Giter Club home page Giter Club logo

Comments (6)

beninabox avatar beninabox commented on June 2, 2024 1

Someone on Stack Overflow pointed me in the right direction with this. Obvious really, now I think about it.
Alamofire will return a failure response because it could not decode the body of the response (not because it was a failure HTTP status code). Therefore we need to also chain the .responseDecodable to .validate(statusCode: 200..<300).

That way, when we get a failure code returned by our server, we can check response.result.isSuccess using a guard statement and if there is a failure, we can handle it from there. My requirement is that the error is decoded, if possible, into a particular error struct I created - so I do that in another method and it is returned as an optional as part of the completion handler. Again to reiterate, with my requirement it may not be possible to decode that error - so I have a generic error response to handle that.

Still need to do some more testing, but it seems to work fairly well for my needs.

I think that handling errors could be explained a little bit in this article. Don't get me wrong, it's a very descriptive and well thought out article, but I think it's important to talk about errors too.

from networkingexample.

santhoshs55 avatar santhoshs55 commented on June 2, 2024 1

Assume server responds with 200 status code and send some generic error in the response, but Alamofire tries to decode the mentioned object which will fail inevitably so how can we handle this situation?

from networkingexample.

abunur avatar abunur commented on June 2, 2024

+1 @beninabox 's comment. If a 401 error is returned this isn't going to be handled by the example code.

from networkingexample.

hoangnguyenvu avatar hoangnguyenvu commented on June 2, 2024

@beninabox same problem with me, how can you solve it, thanks ?

from networkingexample.

karasahinemre avatar karasahinemre commented on June 2, 2024

Someone on Stack Overflow pointed me in the right direction with this. Obvious really, now I think about it.
Alamofire will return a failure response because it could not decode the body of the response (not because it was a failure HTTP status code). Therefore we need to also chain the .responseDecodable to .validate(statusCode: 200..<300).

That way, when we get a failure code returned by our server, we can check response.result.isSuccess using a guard statement and if there is a failure, we can handle it from there. My requirement is that the error is decoded, if possible, into a particular error struct I created - so I do that in another method and it is returned as an optional as part of the completion handler. Again to reiterate, with my requirement it may not be possible to decode that error - so I have a generic error response to handle that.

Still need to do some more testing, but it seems to work fairly well for my needs.

I think that handling errors could be explained a little bit in this article. Don't get me wrong, it's a very descriptive and well thought out article, but I think it's important to talk about errors too.

Can you share an example?

from networkingexample.

atifsaeed14 avatar atifsaeed14 commented on June 2, 2024

Just update
request.responseDecodable(decoder: decoder, completionHandler: { (response: AFDataResponse) in
to
request.responseDecodable(decoder: decoder, completionHandler: { (response: DataResponse) in

from networkingexample.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.