APIs
- What does REST stand for?
Representational State Transfer.
- REST APIs are designed around a __.
resources
- What is an identifer of a resource? Give an example.
Objects, arrays, data ..etc
- What are the most common HTTP verbs?
GET, POST, PUT, PATCH, and DELETE.
- What should the URIs be based on?
nouns
- Give an example of a good URI.
https://adventure-works.com/orders
- What does it mean to have a ‘chatty’ web API? Is this a good or a bad thing?
It’s when the API has a lot of small resources that you can request, and this is usually a bad thing.
- What status code does a successful
GETrequest return?
200
- What status code does an unsuccessful
GETrequest return?
406
- What status code does a successful
POSTrequest return?
201
- What status code does a successful
DELETErequest return?
204
- How would you match your name using RegEx?
^Suhaib Ersan$ ? not sure
| 301 | Home |
|---|---|
| read01 | Introduction to React and Components |
| read02 | State and Props |
| read03 | Passing Functions as Props |
| read04 | React and Forms |
| read05 | Putting it all together |
| read06 | NODE.JS |
| read07 | REST |
| read08 | APIs |
| read09 | FUNCTIONAL PROGRAMMING |
| read10 | In memory storage |
| read11 | Authentication |
| read12 | Mongo and Mongoose |
| read13 | CRUD |
| read14 | Project Ideas |
| read15 | Project Kickoff |