GET api/Post/GetFollowPostList?postID={postID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
postID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of followPost
NameDescriptionTypeAdditional information
ID

integer

None.

content

string

None.

ctime

date

None.

thumbs

integer

None.

adopt

integer

None.

postID

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "content": "sample string 2",
    "ctime": "2023-09-26T20:16:30.5333186+08:00",
    "thumbs": 4,
    "adopt": 5,
    "postID": 6
  },
  {
    "ID": 1,
    "content": "sample string 2",
    "ctime": "2023-09-26T20:16:30.5333186+08:00",
    "thumbs": 4,
    "adopt": 5,
    "postID": 6
  }
]

application/xml, text/xml

Sample:
<ArrayOffollowPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/webApi.Models">
  <followPost>
    <ID>1</ID>
    <adopt>5</adopt>
    <content>sample string 2</content>
    <ctime>2023-09-26T20:16:30.5333186+08:00</ctime>
    <postID>6</postID>
    <thumbs>4</thumbs>
  </followPost>
  <followPost>
    <ID>1</ID>
    <adopt>5</adopt>
    <content>sample string 2</content>
    <ctime>2023-09-26T20:16:30.5333186+08:00</ctime>
    <postID>6</postID>
    <thumbs>4</thumbs>
  </followPost>
</ArrayOffollowPost>