Post Detail
- Endpoint Path:
/api/v2/post/{pid}/detail
- Method:
GET
- Request:
Rest
+Query
Headers Optional Parameter
Parameter Name | Public Mode (Required) | Private Mode (Required) |
---|---|---|
X-Fresns-Aid | optional | required |
X-Fresns-Aid-Token | optional | required |
X-Fresns-Uid | optional | required |
X-Fresns-Uid-Token | optional | required |
Rest Params
Parameter Name | Type | Required | Description |
---|---|---|---|
pid | String | required | Post PID |
Query Params
Parameter Name | Type | Required | Description |
---|---|---|---|
mapId | Number | optional | Map Service Provider |
mapLng | String | optional | Map Longitude (For distance calculation) |
mapLat | String | optional | Map Latitude (For distance calculation) |
whitelistKeys | String | optional | Whitelist key names, only returns key-value pairs for the given key names Multiple separated by English commas, supports "dot notation" for multi-dimensional arrays |
blacklistKeys | String | optional | Blacklist key names, removes specified key-value pairs from the returned data Multiple separated by English commas, supports "dot notation" for multi-dimensional arrays |
Request Description
- If in
private
mode, when expired atusers->expired_at
, you need to determine the status after expiration.- When the key value of the configuration table
site_private_end_after
is1
, this interface cannot be requested; - When the key value is
2
, further judge the posting time. Ifposts->created_at
posting time is greater than the expiration timeusers->expired_at
, it will not be output; if the posting time is less than the expiration time, it means the content was posted before expiration and can be output.
- When the key value of the configuration table
Return
json
{
"code": 0,
"message": "ok",
"data": {
"items": {
"title": "String / SEO Title",
"keywords": "String / SEO Keywords",
"description": "String / SEO Description"
},
"detail": {
// Common Data Structure -> Post Info
}
}
}