1. Verifying GitHub-Style Pagination Headers
API DeveloperBackground
An engineer is designing search API endpoints that return standard navigation links (first, prev, next, last) for client consumption.
Problem
Ensure all four pagination links resolve to correct absolute endpoints and adhere strictly to RFC 8288 parameter syntax.
How to use
Paste the combined Link header string into the Link headers field and supply the request endpoint as the Base URL.
Base URL: http://127.0.0.1:8080/search/code?q=addClass&page=1
Max crawl depth: 10
Link headers:
</search/code?q=addClass&page=15>; rel="next", </search/code?q=addClass&page=34>; rel="last", </search/code?q=addClass&page=1>; rel="first", </search/code?q=addClass&page=14>; rel="prev"Outcome
Generates an HTML report confirming four parsed links with fully resolved target URLs and identifies a complete pagination navigation set.