HATEOAS is an acronym for Hypermedia As The Engine of Application State
-1
votes
0answers
50 views
HATEOAS instant messenger [closed]
I am looking for information to build an instant messenger with RESTful service. I googled a lot but only found some messengers, such as Yahoo!, which is built with CRUD. I can't find even any ...
2
votes
1answer
205 views
HATEOAS client with AngularJS
I was wondering if there were any features hidden in Angular or exposed by some 3rd-party libraries to easily create HATEOAS-compliant Restful clients.
On backend side, I am using Spring Data/REST to ...
0
votes
0answers
56 views
Architecting a REST UI framework [closed]
Id like to discuss a concept, and a potential technology solution for an enterprise Web UI framework. There are two main ideas behind framework:
Homogenization of applications (they should have an ...
2
votes
2answers
160 views
Desing RESTful API using HAL - serialize model relationships
I'm relatively new to REST but I've been doing my homework on how RESTful should be. Now I'm trying to create a RESTful api implementing a JSON+HAL serializer for my models which have relationships ...
3
votes
1answer
163 views
Where can I find a practical HATEOAS Javascript client example? [closed]
I'm looking for a concret example in WOA/HATEOAS !
I read a lot of blogs and see a lot of presentations about HATEOAS but never an example ...
How can you implement the client side ?
Really, when ...
1
vote
2answers
128 views
REST HATEOAS: How to determine and set media-type while browsing links?
I was going through what was described as an example of a good REST API.
A GET was sent on the base URI and with a media-type that was already known to the client somehow (which is fine, as per REST ...
0
votes
0answers
25 views
interactive UI on top of REST api
I have a UI (single-page app ) on top of REST api, in some update scenarios certain fields are non-modifiable i.e attempting to update those fields should return a Http Resp status 400, but it is ...
0
votes
0answers
43 views
An EmberJS DataStore adapter which supports HATEOAS
I'm creating an app which I'd really like to be quite RESTful that follows the HATEOAS REST requirement. On the front-end I'm looking at using Ember because it seems pretty much in line with how I ...
1
vote
1answer
107 views
REST with hypermedia frameworks for .NET
Looking to start a web API project and wondering which of the (two?) frameworks would allow me to go further in Richardson Maturity Model with the least amount friction.
Perhaps a link to a HOWTO?
1
vote
1answer
82 views
How to handle updates to a REST resource when using hypermedia links
I'm working a REST-ful API in which resources which are fairly interrelated. Resources reference each other, and these references may be created or deleted. I'm a little uncertain how to support ...
9
votes
4answers
968 views
Why Hypermedia API
I've been briefly reading about hypermedia apis. I've some questions that i wanted clear answers.
I've written some rest services using spring mvc's rest support and jersey. So I understand the ...
0
votes
1answer
46 views
FSCHateoasBundle configuration in yaml
I'm trying to use FSCHateoasBundle to add links to my API output.
The documentation mentions the possibility to configure relations using annotations or yaml but I cannot figure out where to place ...
0
votes
1answer
60 views
Jersey - Declarative Hyperlinking - In Code Configuration
Hi I'm going through the Jersey Getting Started Guide.
In Chapter 6 they use the @Ref annotation to inject the URI of a resource. I've followed the example, but my uri is always null.
How can I add ...
2
votes
1answer
134 views
HTTP POST requests in a RESTFul HATEOAS API
I'm writing a RESTful HATEOAS API.
I have compound entities which I have to GET, POST and PUT. The GET part is easy, and has lots of examples. The response contains the entity's primitive attributes, ...
0
votes
1answer
139 views
Multiple Single Page Application or a Single Page Application [closed]
I'm writing a (almost) "wizard" web-based project. The base architecture is an Restful service consumed by a web-client that aim to follow the HATOAS approach.
Since is a not so lightweight project ...
1
vote
2answers
174 views
HATEOAS and dynamic discovery of API
The HATEOAS principle "Clients make state transitions only through actions that are dynamically identified within hypermedia by the server"
Now I have a problem with the word dynamically, though I ...
5
votes
3answers
390 views
How to create a custom media type (application/vnd) for a RESTful web service?
I'm playing with REST right now and thought I properly implement HATEOAS just to get all concepts right.
For that I want to create my own media types (application/vnd[...]+xml and ...
1
vote
0answers
196 views
Why does injected UriInfo use a different hostname than injected HttpServletRequest?
I'm learning JAX-RS, and like the idea of returning URLs to other relevant actions in a response. Using Apache TomEE JAX-RS 1.5.1, for some reason the URLs provided by an injected UriInfo instance are ...
7
votes
1answer
225 views
What is the importance of the self link in hypermedia APIs?
All the articles and books I read on REST repeat the importance of adding "self" rel links to your hypermedia responses but they're all light on the reasons and use cases.
Why should you add a self ...
1
vote
1answer
501 views
API design: HATEOAS, json, versioning, and media types
I like the REST HATEOAS concept of making your API discoverable through hyperlinks. People like XML with ATOM format for links and you might not even need to version your API. But, I'm only doing ...
2
votes
1answer
74 views
RESTful URL's for mutating entity
I developed a web-app sometime ago for licensing our software. This has customers, accounts, users and licences. A licence is assigned to a user and activated with a serial number. Licences are ...
0
votes
1answer
100 views
Can a fully RESTful (including HATEOAS) client store a server-provided URI in client-side state?
(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 ...
5
votes
3answers
779 views
JSON Hypermedia Api with forms and links
I am in the early stages of planning a REST api, and I would like for it to adhere to the HATEOAS constraint of REST. But I would also like to provide a JSON format. So my question is if there are ...
3
votes
4answers
292 views
HATEOAS Rel - Any Standards Yet?
I'm just starting to write a client implementation for a WebAPI I'm currently building. The API already employs HATEOAS so I'm writing the client accordingly. I'm using RestSharp as the base for the ...
0
votes
2answers
187 views
HATEOAS - Discovery and URI Templating
I'm designing a HATEOAS API for internal data at my company, but have been having troubles with the discovery of links. Consider the following set of steps for someone to retrieve information about a ...
2
votes
2answers
177 views
HTTP OPTIONS - Not Cacheable?
I'm designing a RESTful service aligning to HATEOAS principles as much as possible. As a result, I need a way to have my cool URLs return a list of links describing available options. I'm using ...
1
vote
2answers
597 views
How should i handle HATEOAS links and References in JSON?
I'm in the process of designing a REST api and to be as RESTful as it gets i want to incorporate HATEOAS into the json responses.
Adding URLs to related resources is easy enough, but there was some ...
0
votes
1answer
65 views
what is the best way to represent super types in REST api?
Let us consider we have an api for zoos such that ../api/zoos which goes all the way to accessing individual animals in a given zoo such as ../api/zoos/123/elephants/234 i.e there are well defined ...
0
votes
1answer
139 views
RESTful HATEOAS Client Url
I'm reasonably sure I understand the server-side of HATEOAS design - returning state URL's in the response - but I'm slightly confused about how to design a client to accept these.
For instance, we ...
0
votes
1answer
168 views
Pure HATEOAS vs making too many service calls
I am trying to build a RESTful web service which is supposed to power my UI. If I go by pure HATEOAS principles, I should only be exposing URIs of individual resources in collections. Now, say I have ...
3
votes
1answer
55 views
RESt api: identification of resource and content varying based on authentication
I'm designing an API following the HATEOAS / RESt principles.
Yet I'm not sure about this basic point: identification of resource.
Suppose this url: /images
which exposes all the images uploaded by ...
0
votes
1answer
188 views
Ember-data: Best Json related resources
Hi I am wondering which is the best solution to work with related resources in ember-data.
In order to build a REST backend.
1) embedded resources
user: {
id: "foo",
albums: [
album: {
id: "foo",
...
45
votes
1answer
768 views
How to create a good hypermedia format using JMSSerializerBundle?
Lets say I want to create an XML-response that will looks something like the following:
<?xml version="1.0" encoding="utf‐8"?>
<product xmlns="urn:com.acme.prods" ...
2
votes
2answers
142 views
Jersey linking support with Google App Engine issue
I didn't manage to use the Jersey linking support with Google App Engine, I'm getting these exceptions when trying to access the application :
Caused by: javax.el.ELException: Could not find ...
4
votes
3answers
904 views
Generating Hypermedia links in a Web API
I'm curious to know how others have dealt with the issue of generating hypermedia links for their web APIs? Specifically, I'm using ASP.NET Web API, and am torn between having operations return ...
0
votes
2answers
77 views
RESTful search. Return actual resources or URIs?
Pretty new to all this REST stuff.
I'm designing my API, and am not sure what I'm supposed to return from a search query. I was assuming I would just return all objects that match the query in their ...
0
votes
1answer
71 views
Do I need to provide all the links in each response?
I try to follow HATEAOS conventions. For each response I will provide links to another page.
I understand I can provide links for next page (for record paging). My question is, do I need to provide ...
3
votes
2answers
544 views
Versioning a RESTful API with both XML and JSON Content-Type
According to this excellent presentation on designing RESTful interfaces, the preferred way to implement versioning is to utilize the Accept-header, using something like:
GET /products HTTP/1.1
Host: ...
0
votes
2answers
132 views
Specifying resource models using XML Schema
I need to formally specify a resource model for RESTful web services and I'm considering XML Schema as a specification language. Ideally, this resource model would promote HATEOAS style client ...
0
votes
1answer
82 views
Is it RESTful to recognize multiple identifiers of a resource?
What if http://example.com/foo and http://example.com/bar both represent the same resource and the server does not distinguish between the two? What if it uses them interchangeably within documents ...
14
votes
5answers
1k views
Statelessness of a REST api with authenticated users
I'm currently designing a REST Http api. (With HATEOAS stuff, to make clients "simpler", and avoid clients to do complicated things, instead of letting the api tell them what to do ...)
Because of ...
5
votes
2answers
421 views
Is it Worth Achieving HATEOAS for Restful Web Services In Real World Usage?
I have been reading a lot about the potential benefits if I were to convert my existing Restful web services to be as HATEOS as possible. I understand the importance in providing links in the payload ...
0
votes
1answer
28 views
Is using an SDK to consume a REST web service synonymous with using a plug in to view content?
The reason the web works is because you don't have to take a binary dependency each website. Probable the same reason that Flash and Silverlight are discouraged. Is using an custom SDK to consume a ...
1
vote
2answers
179 views
links in REST response
in the hateoas paradigm, what does links in a REST response signify , action or a resource? I have a order-form that has a type dropdown, some advanced options fields are to be loaded in the form ...
2
votes
1answer
238 views
Applications suited for REST architecture pattern?
I was recently reading this discussion at SO where somebody commented that not all applications are suited for a REST based architecture.
Here what I mean by "REST based architecture" is the whole ...
2
votes
3answers
280 views
How to use one REST API for both machines and humans?
I'm interested in building a web service with a REST API. I've been reading about HATEOAS and many of the examples explain the concept by comparing it to what humans do when they surf the web. This ...
2
votes
2answers
249 views
Custom Media Types Used In Request's Body Content Type When Designing A REST Service?
When creating your own custom media type format (say application/vnd.myapp+xml), should the client when sending body content, do so in the custom media type?
For example you PUT a representation of ...
6
votes
1answer
309 views
Truly RESTful service live example
Is there any real-life web service which is really 100% RESTful in terms of Fielding's thesis (Content negotiation, Hypermedia etc). I want to get a better grasp of REST and need something I could use ...
7
votes
3answers
1k views
Using HATEOAS and Backbone.js
I've started experimenting with Backbone.js, and was struck by the documentation for the documentation for the url property on Backbone.Model.
In particular, I'm building out a REST API that uses ...
3
votes
3answers
341 views
Link relation granularity vs precision in a custom media type?
I am in the process of designing a custom media type for a RESTful API, and have researched the types and semantic meaning of the some of the 'standard' link relations to give my design some steer.
...

