Rest API - HATEOAS and Linking
Given this REST API response snippet:
What URL should a client use to fetch comments related to this article?
{
"id": 5,
"title": "Article",
"links": {
"comments": {"href": "/articles/5/comments"}
}
}What URL should a client use to fetch comments related to this article?
