Slide 6
Slide 6 text
Glory of REST (Leonard Richardson's Maturity Model)
1. “The Swamp of POX”
You’re using HTTP to make RPC calls. HTTP is only really used as a tunnel.
2. Resources
Rather than making every call to a service endpoint, you have multiple
endpoints that are used to represent resources, and you’re talking to them.
3. HTTP verbs
You interact with resources using HTTP verbs, rather than always using POST.
4. HATEOAS
Hypermedia Controls. HATEOAS. You’re 100% REST compliant.
6