Tagged Questions
24
votes
5answers
3k views
Actual examples for HATEOAS (REST-architecture)
as everyone may have noticed, there are lot of fake/rudimentary REST-APIs in the wild (which implement a HTTP-API and call it REST without following the hypertext-as-the-engine-of-application-state ...
5
votes
3answers
128 views
RESTful api design, HATEOAS and resource discovery
One of the core ideas behind HATEOAS is that clients should be able to start from single entry point URL and discover all exposed resources and state transitions available for those. While I can ...
4
votes
4answers
137 views
RESTful API runtime discoverability / HATEOAS client design
For a SaaS startup I'm involved in, I am building both a RESTful web API and a couple of client apps on different platforms that consume it. I think I've got the API figured out, but now I'm turning ...
2
votes
2answers
137 views
When serving responses from a REST API with the hypermedia constraint, how to indicate to client which HTTP method(verb) to use?
I think I have a pretty good grasp on the tenets of a RESTful architecture but I'm not there yet.
The part that I can't seem to figure out is how do the clients become aware of which HTTP methods are ...