Complete the code to specify the resource identifier in the URL.
GET /users/[1] HTTP/1.1
The resource identifier uniquely identifies the user resource, such as an ID like 123.
Complete the URL to access the order with the given identifier.
GET /orders/[1] HTTP/1.1
The identifier for the order is a specific number like 456, which uniquely identifies the order resource.
Fix the error in the URL by correctly placing the resource identifier.
GET /products/[1]/reviews HTTP/1.1
The resource identifier '789' should be placed after 'products' to specify which product's reviews are requested.
Fill both blanks to correctly form the URL for accessing a specific comment on a post.
GET /posts/[1]/comments/[2] HTTP/1.1
The first blank is the post ID (101), and the second blank is the comment ID (202), specifying the exact comment on the post.
Fill all three blanks to create a URL that accesses a specific chapter of a book in a library API.
GET /libraries/[1]/books/[2]/chapters/[3] HTTP/1.1
The URL uses 'lib42' as the library ID, 'book7' as the book ID, and 'ch3' as the chapter ID to specify the exact chapter resource.