Index Feature HTTP Method Route Note
1 使用者可以撰寫 tweet POST POST /api/tweets need authentication
2 使用者可以看到所有 tweet GET GET /api/tweets need authentication
3 使用者可以看到特定一則 tweet GET GET /api/tweets/:tweet_id need authentication

1. 使用者可以撰寫 tweet:POST /api/tweets

2. 使用者可以看到所有 tweet:GET /api/tweets

3. 使用者可以看到特定一則 tweet:GET /api/tweets/:tweet_id