URLs
GET api/v1/blogs/{blogid}/posts.xml (or .json)
LIST blog posts.
GET api/v1/blogs/posts.xml (or .json)
LIST blog posts.
GET api/v1/groups/{groupid}/blogs/posts.xml (or .json)
LIST blog posts.
请求参数
名称 |
类型 |
描述 |
必需 |
默认值 |
选项 |
AuthorId |
int? |
Id of author |
否 |
||
BlogId |
int? |
Either GroupId or BlogId or BlogIds are required. |
否 |
||
BlogIds |
string |
Either GroupId or BlogId or BlogIds are required. Used to filter by a list of blogs. Multiple values are separated with commas. |
否 |
||
GroupId |
int? |
Either GroupId or BlogId or BlogIds are required. |
否 |
||
IncludeSubGroups |
bool? |
Only used when GroupId is specified. Default is false. |
否 |
||
ContentIds |
string |
Comma separated list of ContentIds. Used to limit to a specific set of blog posts as well as sort order if SoryBy is set to ContentIdsOrder |
否 |
||
IncludeUnpublished |
bool? |
Include unpublished posts too? Default is published only. |
否 |
||
SortBy |
string |
Options are: MostComments, MostRecent, MostViewed, Score:SCORE_ID, ContentIdsOrder. Default is MostRecent. |
否 |
||
SortOrder |
string |
Options include Ascending, Descending. Default is Descending. |
否 |
||
PostTarget |
string |
Do not document this property. |
否 |
||
Tags |
string |
A comma separated list of tags to filter posts. |
否 |
||
LogicallyOrTags |
bool? |
Filter posts by tags with OR. Default is false (AND tags). |
否 |
||
DateFilter |
DateTime? |
A DateTime value used to filter posts. |
否 |
||
DateFilterType |
string |
Only used when using a DateFilter. Options include Year, Month, Day. |
否 |
||
PageSize |
int? |
Specify the number of results to return per page. If not set the default is 20. The max is 100. |
否 |
||
PageIndex |
int? |
Specify the page number of paged results to return. Zero-based index. If not specified the default is 0. |
否 |