(NB: I'm assuming a REST service that uses URIs to identify resources, I'm aware this isn't strictly a constraint of REST)
From my understanding of HATEOAS, a client shouldn't assume anything about the URI structure provided by a service except for the initial entry point (and instead should only use URIs given to it in a structured way by the server). Does this mean the client can only use URIs given to it by the latest request, or can the client keep track of URIs received in earlier requests from the same session? If the former, which REST constraint would the latter violate?
Two examples of keeping track of URIs:
- In a photo viewing application, I traverse a list of photos, saving the URIs of some to a list. Then, I navigate to the "Mosaic" functionality and load all the photos from the saved URIs into the mosaic.
- I browse a list of products and add some to my client-side shopping cart. When I'm done, I create a new element in the Orders resource, with the products in the order specified by their URI.
