Authorization: Bearer ********************curl --location --request GET '/movies/1/comments' \
--header 'Authorization: Bearer <token>'{
"code": 200,
"message": "成功",
"data": [
{
"id": 1,
"userId": 101,
"username": "张三",
"movieId": 123,
"content": "这部电影太棒了!",
"createdAt": "2025-05-05T10:30:00Z",
"updatedAt": "2025-05-05T10:30:00Z"
}
]
}