REST API Alternatives
11–20 of 82 posts
Re: REST API Alternatives
#12Then again, most "REST" as practiced for intra-business data is not really "REST" as far as purists would be concerned; while we at least do things like use HTTP error codes instead of an HTML page with "error" on it under a 200, I'd be laughed out of the conference room if I suggested our clients use a PUT instead of a POST. But who cares, as long as it's not SOAP.
Re: REST API Alternatives
#13The concept of poking about with HTTP to try and treat it vaguely like a TCP style transport protocol is rather silly.
If you think about how "wordy" HTTP is, along with the standard RESTful verbs, you'll start to think "hmmm, perhaps this isn't the best way."
Websockets and if you must a bit of JSON (binary if done properly is lower latency and much more efficient) should be the way forward.
yes its a bit harder, but you know, its smaller, better, more efficient.
Re: REST API Alternatives
#14Re: REST API Alternatives
#15The next big thing: noREST.
Re: REST API Alternatives
#16Re: REST API Alternatives
#17deep ops on multiple objects complicate things even further.
i feel like once you get outside the realm of basic document storage (which is what HTTP was designed for), REST via HTTP headers completely breaks down into custom hackery for which there are no standards.
Re: REST API Alternatives
#18Re: REST API Alternatives
#19Re: REST API Alternatives
#20The next big thing: noREST.