Slide 6
Slide 6 text
REST concepts
• Uniform Interface
• Decouple the architecture
• Elements:
• HTTP verbs (GET, PUT, POST, DELETE, …)
• URIs (resource naming)
• HTTP responses (body + status code)
• Stateless
• Server doesn’t store any client state
• Each request contains enough information to be processed
• Any session state is kept in the client
• Others (check this link)