根据顺序获取 Blogger 帖子
Fetch Blogger Posts based on Order
我正在使用博主 post API.
获取数据
结果以最新到最旧格式出现,pagination.I需要使用最旧到最新获取,因为我需要最新的 post 时间来在下一次调用新的 post 时获取数据。
如何将 API 与 parameters.Currently 一起使用,我正在使用以下 api 调用
https://www.googleapis.com/blogger/v3/blogs/posts?startDate2015-10-15T00:00:00+00:00&key=$key
Posts: list只支持按发布或更新排序,不支持方向。
orderBy string Sort order applied to results.
- Acceptable values are: "published": Order by the date the post was
- published "updated": Order by the date the post was last updated
我建议您在从 Google 得到结果后自己对它们进行排序。
我正在使用博主 post API.
获取数据结果以最新到最旧格式出现,pagination.I需要使用最旧到最新获取,因为我需要最新的 post 时间来在下一次调用新的 post 时获取数据。
如何将 API 与 parameters.Currently 一起使用,我正在使用以下 api 调用
https://www.googleapis.com/blogger/v3/blogs/posts?startDate2015-10-15T00:00:00+00:00&key=$key
Posts: list只支持按发布或更新排序,不支持方向。
orderBy string Sort order applied to results.
- Acceptable values are: "published": Order by the date the post was
- published "updated": Order by the date the post was last updated
我建议您在从 Google 得到结果后自己对它们进行排序。