I've verified my API server using the HAL-browser, but when I try hyperresource it doesn't search properly on the underlying products collection.
GET /products returns this:
{
"_links": {
"self": {
"href": "/"
},
"curies": [
{
"name": "ht",
"href": "http://localhost:8080:/rels/{rel}",
"templated": true
}
],
"ht:products": {
"href": "/products"
},
"ht:users": {
"href": "/users"
}
},
"welcome": "Welcome to Kiffin's Demo HAL Server.",
"hint_1": "This is the first hint.",
"hint_2": "This is the second hint.",
"hint_3": "This is the third hint.",
"hint_4": "This is the fourth hint.",
"hint_5": "This is the last hint."
}
I've verified my API server using the HAL-browser, but when I try
hyperresource
it doesn't search properly on the underlying products collection.GET /products
returns this:GET /products
returns this:GET /products/2
returns this:So far so good. However, following the documentation verbatim, here's what I see:
I have the following questions: