Index Feature HTTP Method Route Note
1 使用者可以對特定一則 tweet 點擊愛心 POST POST /api/tweets/:id/like need authentication
2 使用者可以對特定一則 tweet 收回點擊過的愛心 POST POST /api/tweets/:id/unlike need authentication

1. 使用者可以對特定一則 tweet 點擊愛心:POST /api/tweets/:id/like

2. 使用者可以對特定一則 tweet 收回點擊過的愛心:POST /api/tweets/:id/unlike