我能够检索我的页面未发布的帖子。我试图了解如何检索它们按scheduled_publish_time
(Unix时间戳)属性排序,没有需要在我的应用程序中对它们进行排序。
正如文档所说:
Time-based Pagination:
Time pagination is used to navigate through results data using Unix timestamps which point to specific times in a list of data.
When using an endpoint that uses time-based pagination, you will see the following JSON response:
until : A Unix timestamp or strtotime data value that points to the end of the range of time-based data.
since : A Unix timestamp or strtotime data value that points to the start of the range of time-based data.
虽然,如果我将since
设置为当前日期时间戳,我会变空json(如果我不指定since
,i& #39;我得到了所有未发表的帖子的回复)。
底线,如何在scheduled_publish_time
订单中检索未发布的帖子?