Code Monkey home page Code Monkey logo

Comments (6)

bryanmacfarlane avatar bryanmacfarlane commented on May 23, 2024

I will fix this. Thanks for the suggestion.

On a related note, there is a question whether some non error codes should even throw. Note that we also just added 3xx redirect supports so that's out of the mix.

Thoughts?

from typed-rest-client.

bryanmacfarlane avatar bryanmacfarlane commented on May 23, 2024

Looking at this now. Note the http client doesn't throw it's pure request / response in all cases. It's the higher level rest client that does the http request and turns that into a restful object. So, for example, a 404 will return an object. As noted above, we recently added 302 support.

What I'm considering:

  • Only a 500 throws an exception. Even in that case, I will add the status code and body to the error object.
  • 504 gateways etc... would not throw (caller may want to step off and retry)
  • 3xx redirects are handled by default.
  • 4xx would return response (not throw) but object / result would be null

Thoughts?

from typed-rest-client.

peterblazejewicz avatar peterblazejewicz commented on May 23, 2024

Bryan, this could be alreayd late to do this, but can the api be aligned to e.g. Fetch API specs in this details?
https://fetch.spec.whatwg.org/#fetch-method
https://github.github.io/fetch/ (polyfill for fetch specs)
Chrome impl for redirects: https://www.chromestatus.com/feature/4614142321229824

from typed-rest-client.

bryanmacfarlane avatar bryanmacfarlane commented on May 23, 2024

Thanks for all the feedback. We met and here's where we landed.

This ships an http and rest client.

The http client is a lower level http client. It does not throw unless something truly exceptional happened. Even a 500 successfully returns with the promise resolved.

The rest client is a higher level resource client. 200s will be resolved and 3xx redirects will be handled for you by default. In order to write linear code with the higher level client without checking after every call, the higher level rest client will throw on 4xx+ (3xx redirs handled for you).

But, to address the root concern here, I will make sure the error object has the status code and the message.

from typed-rest-client.

bryanmacfarlane avatar bryanmacfarlane commented on May 23, 2024

Fixed. Details here:

https://github.com/Microsoft/typed-rest-client#errors

and

https://github.com/Microsoft/typed-rest-client/blob/master/test/resttests.ts#L38

from typed-rest-client.

bryanmacfarlane avatar bryanmacfarlane commented on May 23, 2024

[email protected] has the fix

from typed-rest-client.

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.