REST Notes
This topic is important to me because I want to create unique apps where I can show many things because I have a vast amount of data.
References
https://gist.github.com/brookr/5977550.




Rest Explanation
ALl of your items in your web pages can be identified as a noun. To apply universal verbs to each of these, it would allow you to access the data.
GET, POST, DELETE, PATCH, are all verbs that can be applied universally.
Rest Explanation Questions
- Who is Roy Fielding?
- Why don’t the techniques that we use in this class work well when we need to be able to talk to all of the machines in the world?
- What is the HTTP protocol that Fielding and his friends created?
- What does a GET do?
- What does a POST do?
- What does PUT do?
- What does PATCH do?
Rest Explanation Answers
- A smart guy who introduced HTTP.
- It would simply be too difficult to make things work.
- A way for us to communicate with machines around the world.
- used to request data.
- Verifies the hardware viability.
- Its a redirect, you can replace whatever currently exists at the target URL.
- making partial changes to an existing resource.
API Keys
-
Yes
-
Yes
-
Yes
-
Yes
Things I want to know more about
I want to know how to apply these API’s.
I want to know on how complex this can get.