APIs - lucasjwilber/seattle-301d52 GitHub Wiki

What Google learned about teams: -One of the most important factors to a strong and productive team is psychological safety. This means that everyone in the team should feel comfortable providing input, so that all perspectives and ideas are considered.

What is REST? -REST stands for REpresentational State Transfer. -REST is a way to describe an API. If an API is considered RESTful, that means that requests send to it must contain enough information to process them, and that the responses it sends include enough information that the client can figure out how to modify the resource. It also must have a uniform interface, so that requests from different clients all look the same. It also must be stateless, which means that it does not know or care about who uses it.