Posts

Showing posts from March, 2019

REST API (Part II)

Image
Hi,Here is REST API (Part II) If you do not know what the REST API is, Please read my previous article REST API (Part I) REST and API are acronyms for R epresentational S tate T ransfer and A pplication P rogramming I nterface. Rest APIs are integral to web application development and becoming mainstays of all web development. Understanding what they are and how they work starts with  understanding what these names, representational state transfer, and application programming interface, actually mean. According to MDN, Representational State Transfer 'Representational State Transfer(REST) refers to a group of software architecture design constraints that bring about efficient, reliable, and scalable systems' So REST is not a specific technology, but rather a data architecture and a design methodology that produces predictable and consistent outputs and behaviors by receiving a set of standard methods called verbs and returning standardized s...