WooCommerce Rest Api:按特定日期获取订单
Posted
技术标签:
【中文标题】WooCommerce Rest Api:按特定日期获取订单【英文标题】:WooCommerce Rest Api: Get the orders by specific date 【发布时间】:2016-10-23 22:21:05 【问题描述】:我想使用 WooCommerce Rest Api 在特定日期获取订单。 Api 提供了只接受 ID 的订单方法。但我想在特定日期获得特定订单。
我怎样才能做到这一点?
谢谢。
【问题讨论】:
【参考方案1】:为此,您需要查看 WooCommerce orders 端点。特别是围绕 after 和 before 过滤器。
例如。
GET wp-json/wc/v3/orders?after=2016-06-22T00:00:00&before=2016-06-22T23:59:59per_page=100
【讨论】:
难以置信! “T00:00:00”这个代码为我节省了很多时间!很棒 @Andrew A. Barber 如何为此类场景创建端点 URL? 谢谢,这有帮助!虽然我想选择一个不同的日期进行比较,而不是date_created
。以上是关于WooCommerce Rest Api:按特定日期获取订单的主要内容,如果未能解决你的问题,请参考以下文章
在 Woocommerce REST API 中按类别获取产品
我如何更好地在 woocommerce rest api 中按类别对产品进行分组?