Q1. What type of relationship is defined as one resource existing only if another parent resource exist-for example, pages in a book?
Q2. Which URL pattern is recommended when working with one resource and a collection of resources?
Q3. When dealing with JSON web Tokens (JWTs), what is a claim?
Q4. Which REST constraint specifies that knowledge and understanding obtained from one component of the API should be generally applicable elsewhere in the API?
Q5. What would you enable to allow a browser on another site to make an AJAX request to your API?
Q6. APIs commonly use webhooks to _.
Q7. What is the underlying goal of all APIs?
Q8. Which is a common command-line tool for using or exploring an API?
Q9. What is the modern specification for describing an API?
Q60. When you get a 429 response code, what should you do next?
Q61. When exploring record sets, what is the best approach for pagination?
Q62. What is not a method for API authentication or authorization?
Q63. Which HTTP response code usually means the requested work is still processing and may or may not result in an error later?
Q64. When validating a JWT, what are some of the claims that you must confirm? (Select all that apply.)
A. The exp (expiration) has not passed.
B. The algorithm is sufficient.
C. The signature matches the payload.
D. The token was Base64 encoded.
E. The iss (issuer) is the auth server you expect.
F. There is a refresh token.
G. The cid (client ID) is the client you expect.
H. The token was encrypted.
Q65. API traffic that enters and leaves your organization is normally called _?
Q72. You are developing a RESTful API for a new project on GitHub. Security is a top priority, and you want to ensure that only authorized users can access specific endpoints. Which of the following mechanisms should you use to achieve this goal?