#Resful
#Rest
RESTFUL is not architecture
Rest is an architecture and restful is a service that implements this architecture.
🔅 There are 4 attribute for RestfulApi
1.client-server
Backend is server and frontend is client
and these are independent and scalable.
2. stateless
No data is stored on the server side and the server is never aware of the previous status of the client and does not face changes in the client server.
3.cacheable
Ability to cache response on the client side.
4.uniform interface
we can see method from url and Response hase satatus code for show detail to client.
✍️ fathollahi
@fullStackDevs
#Rest
RESTFUL is not architecture
Rest is an architecture and restful is a service that implements this architecture.
🔅 There are 4 attribute for RestfulApi
1.client-server
Backend is server and frontend is client
and these are independent and scalable.
2. stateless
No data is stored on the server side and the server is never aware of the previous status of the client and does not face changes in the client server.
3.cacheable
Ability to cache response on the client side.
4.uniform interface
we can see method from url and Response hase satatus code for show detail to client.
✍️ fathollahi
@fullStackDevs