December 2019
Intermediate to advanced
510 pages
11h 33m
English
Services usually deliver a state to clients via body content, response codes, and response headers. Above all, hypermedia-driven services (HATEOAS) include the URI of other resources within their responses. The following example describes the concept of HATEOAS:
{ "links": { "self": { "href": "http://example.com/people" }, "item": [ { "href": "http://example.com/people/1", "title": "Kendrick West" }, { "href": "http://example.com/people/2", "title": "Anderson Rocky" } ] },}
The previous response provides a list of people, together with the URIs that specify detailed information of each person. Therefore, the client knows the right URI of the request to use in order to get the information regarding ...
Read now
Unlock full access