通过Shopify API获取所有订单的列表

时间:2015-12-28 06:11:11

标签: php shopify

我无法通过 API 获取所有 Shopify 订单,但订单超出了我指定的日期范围。

这些网址都不适合我:

https://1x877xxxxbd3ed99ae30d1eb4d71cxxx:dcfee3235061bd149ebxxxxxxxxxxxxx@store.myshopify.com/admin/orders.json

https://1x877xxxxbd3ed99ae30d1eb4d71cxxx:dcfee32635061bd149ebxxxxxxxxxxxxx@store.myshopify.com/admin/orders.json?created_at_min=2015-08-01+3%3A00&created_at_max=2015-12-01+3%3A00

回复如下:

  

stdClass对象([success] => 1 [status] => OK [error] => [data] =>   数组([orders] =>数组())......

但是,如果我只查询单个订单,它将起作用

  

管理员/命令/ 2073172294.json

1 个答案:

答案 0 :(得分:2)

我现在得到了这个。 此查询没有返回任何订单,因为它使用默认订单status = open。

https://1x877xxxxbd3ed99ae30d1eb4d71cxxx:dcfee3235061bd149ebxxxxxxxxxxxxx@store.myshopify.com/admin/orders.json

我只需要将状态设置为"任何"

https://1x877xxxxbd3ed99ae30d1eb4d71cxxx:dcfee3235061bd149ebxxxxxxxxxxxxx@store.myshopify.com/admin/orders.json?status=any