Complete the code to add a Link header for the next page URL.
response.headers['Link'] = '<[1]>; rel="next"'
The Link header must contain the full URL for the next page, enclosed in <>.
Complete the code to add Link headers for both previous and next pages.
response.headers['Link'] = '<[1]>; rel="prev", <https://api.example.com/items?page=3>; rel="next"'
The Link header for the previous page must be the full URL for page 1.
Fix the error in the Link header format to correctly separate multiple links.
response.headers['Link'] = '<https://api.example.com/items?page=1>; rel="prev"[1]<https://api.example.com/items?page=3>; rel="next"'
Multiple links in the Link header must be separated by a comma and a space.
Fill both blanks to create a Link header with first and last page URLs.
response.headers['Link'] = '<[1]>; rel="first", <[2]>; rel="last"'
The first page URL is page 1, and the last page URL is page 10, both as full URLs.
Fill all three blanks to build a Link header with prev, next, and last page URLs.
response.headers['Link'] = '<[1]>; rel="prev", <[2]>; rel="next", <[3]>; rel="last"'
The previous page is page 3, next page is page 4, and last page is page 10, all full URLs.