res.links(links)
Joins the links
provided as properties of the parameter to populate the response’s Link
HTTP header field.
For example, the following call:
1 2 3 4 | res.links({ }); |
Yields the following results:
1 2 | Link: <http: //api.example.com/users?page=2>; rel="next", <http: //api.example.com/users?page=5>; rel="last" |
Please login to continue.