reading-notes


Project maintained by mr-atta Hosted on GitHub Pages — Theme by mattgraham

HTTP Status Code to Use for Every CRUD App

## In your own words, describe what each group of status code represents:

## What is a status code 202?

this doesn’t mean the request was successfully processed only that it met all validation requirements at the time of sending ## What is a status code 308? This tells the client to use another URL to access the resource and not use the current URL anymore. It’s helpful when we have multiple endpoints for one resource, but don’t want to implement reading from all of them. ## What code would you use if an update didn’t return data to a client? 204 No Content ## What code would you use if a resource used to exist but no longer does? 410 Gone ## What is the ‘Forbidden’ status code? 403 Forbidden - The client has authorized or doesn’t need to authorize itself, but still has no permissions to access the resource.

HTTP Status CodesPermalink



<hr>

📌 From