Creating apis
- 1 million cups
- Web Api
Create a web aspi app that allows a client to list all Posts via an API.
- GET
/posts
to return all posts - GET
/posts/:id
gives details of a post - POST
/posts
creates a post - PUT
/posts/:id
updates a post - DELETE
/posts/:id
deletes a post
Test your apps using Fiddler 2