Take some REST
RE presentational S tate T ransfer! What is REST? (REST API) Let’s say you’re trying to find videos about Avengers on Youtube. You open up Youtube, type “ Avengers ” into a search field, hit enter, and you see a list of videos about Avengers . A REST API works in a similar way. You search for something, and you get a list of results back from the service you’re requesting from. Wait... What is an API? API stands for Application Programming Interface which will have a set of rules that allows the programs to talk to each other over a protocol. The developer creates the API on the server (host) API One of the rules in REST states that the user should be able to get a piece of data, which is called resource, when linked to a specific URL. When doing this, certain security filtering may done when user tries to get to the resource through that URL. For example, application might filter only logged in users to view certain resources. Each lin...