POST api/bbs/GetPostStatisticsDetail
查询帖子统计详情
Request Information
URI Parameters
None.
Body Parameters
GetPostStatisticsDetailInput| Name | Description | Type | Additional information |
|---|---|---|---|
| post_id |
帖子主键id |
integer |
None. |
| user_id |
当前登录者Id |
string |
None. |
| token |
token |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"post_id": 1,
"user_id": "sample string 1",
"token": "sample string 2"
}
application/xml, text/xml
Sample:
<GetPostStatisticsDetailInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BBS.Model.Dtos.Post"> <token xmlns="http://schemas.datacontract.org/2004/07/BBS.Model">sample string 2</token> <user_id xmlns="http://schemas.datacontract.org/2004/07/BBS.Model">sample string 1</user_id> <post_id>1</post_id> </GetPostStatisticsDetailInput>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
查询帖子统计详情
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |