Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 1.07 KB

File metadata and controls

23 lines (17 loc) · 1.07 KB

code fellows 301

Read: 12 - CRUD

Reading

  1. Descripe the data:
  • 100’s = Tells client that header part of request has been received and server will try to transmit demand of the client.
  • 200’s = Tells client that its request was accepted.
  • 300’s = Tells client that the resource they are requesting isn’t available in tht location anymore.
  • 400’s = Invalid requests a client sent to a server.
  • 500’s = Problems with overwhelmed servers or unreachable.
  1. A status code 202 code tells the client that the request was valid, but is process.
  2. A status code 308 code is a permanent redirect.
  3. If an update didn't return to a client, send code 404.
  4. If resource no longer exists, send code 410.
  5. The 'Forbidden' status code is code 403.