Web App Network Architecture
REST
- Representational State Transfer
- Application state and functionality are abstracted into resources
- Each resource may be referenced with a global identifier (URI over HTTP)
- Resources share a uniform interfaces
- Note
REST URIs and HTTP actions
- GET http://myserver.com/topics - a list of all the topics
- GET http://myserver.com/topics/1 - the first topic
- POST http://myserver.com/topics - create a topic
- PUT http://myserver.com/topics/1 - modify the first topic
- DELETE http://myserver.com/topics/1 - delete the first topic
/
#