Proyecto: diseñando los endpoints de los Tweets

Veamos, implementamos un CRUD.

API de Twitter:

<http://twitter.com/api/tweets> (api/tweets es el endpoint/route/path)

/tweets   --> Show all tweets (Read)
/post     --> Publish a tweet (Create)
/tweets/{tweet_id} --> Show a tweet (Read)
/tweets/{tweet_id}/update ---> Update a tweet (Update)
/tweets/{tweet_id}/delete --->Delete a tweet (Delete)