Advertisement

REST API advantages and disadvantages with examples

REST API advantages and disadvantages with examples 💻 More software engineering videos


What is REST API, advantages and disadvantages with examples

REST stands for Representational state transfer its is an architecture that became very popular in build web APIs. It was the dissertation of Roy Fielding. In this video we discuss what makes an API RESTFUL, the REST APIs constrains, ill the show you an example of a RESTFUL api in github.


Representation and State transfer
Representational
The resource is a representation or meta data, but the actual backend could be something else and stored differently. An

Example, could be a user resource could be represented as a JSON object but it is stored on the backend as relation DBMS tables such as postgres.


State transfer
The application server is stateless, and when we want communicate we transfer the current state of with each request. Thus the state transfer.

Example, lets say you are uploading a 5MB file in 5 chunks each is 1 MB in size and assemble it on the backend. The REST api end point takes the content along with a upload sequence, then persist it on a storage backend such as S3. Each chunk request could hit a completely different stateless server and the transfer will work fine since we are transferring the state (upload sequence) with every request. The client maintains the state in this case.


Rest constraints
Client/server architecture
Is there separation of concern? Can you upgrade your server without upgrading client? Can you upgrade the server without upgrading the client?

Statelessness
Is your api stateless? Can you restart your backend server and clients of your api resume working normally without failing? Can you add a non sticky load balancer and transfer the load between the servers without the client breaking?

Cachablity
Can resources that can be cached be cached with your api? And is there a way to identify stale resources?

Layered systems
Can I insert gateways and proxies and firewalls silently without this architecture breaking? Load balancers

Uniform interface
Resource identification (uri)
Resource Representation (json)


HATEOAS

Hypermedia as an engine to application state
Initial link can link to the rest ( github)
Github
Emojis




HTTP video

cards:
stateless vs stateful 4:50
E-tags : 14:00
fetch api 20:20
chrome/postgres 23:20

jump codes
Representations and State transfer 3:00
Rest constraints 12:14
REST API github api (18:18)


Software Engineering Links
TCP vs UDP
Python on the backend Udemy
Query Parameters vs resource parameters
GET vs POST
HTTP E-tags
HTTP Cookies
Spinup nodejs
Fetch API
OSI Model
TLS
How to consume Postgres from Chrome through NodeJS
Stateless vs Stateful



Stay Awesome!
Hussein

software engineering,Rest api,representational state transfer,rest api examples,rest api limitations,hateoas,proxy rest,roy fielding rest api,graphql vs restapi,

Post a Comment

0 Comments