Questions tagged [hateoas]

Hypermedia As The Engine Of Application State (HATEOAS) is a constraint of the REST application architecture.

The principle of HATEOAS is that a client interacts with a network application entirely through hypermedia provided dynamically by application servers. A REST client needs no prior knowledge about how to interact with any particular application or server beyond a generic understanding of hypermedia.

41 questions
7
votes
3 answers

HATEOAS vs Frontend app GUI

I've just found HATEOAS. I think I kind of understand what is stands for, but something is not clear to me. There is nowhere to be found how can I create the consuming client in HTML. I can imagine that for some links I will generate buttons, for…
Zveratko
  • 179
  • 4
0
votes
1 answer

HATEOAS and storage of resource URL

I have my system which receives data from another service and then I show the data to my users. I'd like to store an ID or a link to the data. Then UI will go for the data using the ID/link. If we were to use HATEOAS, we'd go with links, so: Poll…
0
votes
3 answers

Direct link with HATEOAS?

I'm considering HATEOAS for one of my application but for that, I need to be sure that it fits my needs. One of them is the ability to support direct links such as "https://www.webapp.com/user/1" for example. In this case, when the user lands on…
ssougnez
  • 135
  • 2