reading-notes

Todd Wolden

View on GitHub

301 Class Seven Reading Notes “REST”

Questions

  1. Who is Roy Fielding? Smart guy and one of the authors of HTTP.
  2. Why don’t the techniques that we use today work well when we need to be able to talk to all of the machines in the world? Because they didn’t have a universal noun yet.
  3. What is the HTTP protocol that Fielding and his friends created? They created HTTP 1.1
  4. What does a GET do? Get is a way to grab data from a data sourcwe with the internet.
  5. What does a POST do? Post requests that the web server accept the data enclosed in the body of the message request.
  6. What does a PUT do? The PUT method completely replaces whatever currently exists at the target URL with something else.
  7. What does PATCH do? Request method that applies partial modifications to a resource.

Resources

Return to the Table of Contents

Table of Contents