IT:AD:ASP.NET:WebAPI
- See also:
- https://jsonplaceholder.typicode.com/ ← useful source of fake data
## TODO ! ##
Security: http://stackoverflow.com/questions/11775594/how-to-secure-an-aspnet-mvc-web-api
HMAC
Sumary
- A framework for Http Services in a RESTful manner, on top of ASP.NET
- WHY?
- Larger reach: making MVC apps not just browser.
- Made to expose Services can be exposed to other machines.
- 'Content Negotiation'
- Json|XML depending on ContentType
- Scalable due to async approach
- Uses http programming model
Things to note:
- It's for services, Not intended to be browsed to using browser
- Notice the route. No Actions defined (just controller + access method).
- The Actions map to Http Method (GET|POST|…)
Configuration
Resources
- Security: