GET {version}/Video/GetVideoCommentList/{ID}?pageIndex={pageIndex}&pageSize={pageSize}
得到评论列表
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
Required |
|
| pageIndex | integer |
Default value is 1 |
|
| pageSize | integer |
Default value is 10 |
|
| version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
ApiResultOfListOfVideoCommentDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
None. |
|
| Message | string |
None. |
|
| Data | Collection of VideoCommentDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": "sample string 1",
"Message": "sample string 2",
"Data": [
{
"ID": 1,
"UserID": 2,
"NickName": "sample string 3",
"Avatar": "sample string 4",
"TimeFormat": "sample string 5",
"RecDate": "2026-01-31T18:04:44.3003695+08:00",
"CommentType": 7,
"Content": "sample string 8"
},
{
"ID": 1,
"UserID": 2,
"NickName": "sample string 3",
"Avatar": "sample string 4",
"TimeFormat": "sample string 5",
"RecDate": "2026-01-31T18:04:44.3003695+08:00",
"CommentType": 7,
"Content": "sample string 8"
}
]
}
application/xml, text/xml
Sample:
<ApiResultOfArrayOfVideoCommentDtoF2xKsV4k xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TinyFx.Web.Results">
<Code>sample string 1</Code>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Eshikao.Models">
<d2p1:VideoCommentDto>
<d2p1:Avatar>sample string 4</d2p1:Avatar>
<d2p1:CommentType>7</d2p1:CommentType>
<d2p1:Content>sample string 8</d2p1:Content>
<d2p1:ID>1</d2p1:ID>
<d2p1:NickName>sample string 3</d2p1:NickName>
<d2p1:RecDate>2026-01-31T18:04:44.3003695+08:00</d2p1:RecDate>
<d2p1:TimeFormat>sample string 5</d2p1:TimeFormat>
<d2p1:UserID>2</d2p1:UserID>
</d2p1:VideoCommentDto>
<d2p1:VideoCommentDto>
<d2p1:Avatar>sample string 4</d2p1:Avatar>
<d2p1:CommentType>7</d2p1:CommentType>
<d2p1:Content>sample string 8</d2p1:Content>
<d2p1:ID>1</d2p1:ID>
<d2p1:NickName>sample string 3</d2p1:NickName>
<d2p1:RecDate>2026-01-31T18:04:44.3003695+08:00</d2p1:RecDate>
<d2p1:TimeFormat>sample string 5</d2p1:TimeFormat>
<d2p1:UserID>2</d2p1:UserID>
</d2p1:VideoCommentDto>
</Data>
<Message>sample string 2</Message>
</ApiResultOfArrayOfVideoCommentDtoF2xKsV4k>