Получить все заказы клиентов в WooCommerce API

Я пытаюсь получить все заказы, принадлежащие конкретному клиенту, используя эту конечную точку в WooCommerce API v2

http://woothemes.github.io/woocommerce-rest-api-docs/v2.html#view-customer-orders

используя эту библиотеку https://github.com/kloon/WooCommerce-REST-API-Client-Library

Я проверил панель инструментов веб-сайта, и есть отложенные ордера

Но я всегда получаю этот ответ:

[data] => Array ( ) [body] => [duration] => 1.36552 ) [response] => stdClass Object ( [body] => {"orders":[]} [code] => 200 [headers] => Array ( [Date] => Thu, 31 Mar 2016 07:37:35 GMT [Server] => Apache [X-Powered-By] => PHP/5.5.33 [Connection] => close [Transfer-Encoding] => chunked [Content-Type] => application/json; charset=UTF-8 ) ) ) ) 

Другие конечные точки в API отлично работают, это мой простой код

 <?php require_once( 'lib/woocommerce-api.php' ); $options = array( 'debug' => true, 'return_as_array' => false, 'validate_url' => false, 'timeout' => 30, 'ssl_verify' => false, ); try { $client = new WC_API_Client( 'http://localhost/store', $API_KEY, $API_SECRET, $options ); print_r($client->customers->get_orders($userId)); } catch ( WC_API_Client_Exception $e ) { echo $e->getMessage() . PHP_EOL; echo $e->getCode() . PHP_EOL; if ( $e instanceof WC_API_Client_HTTP_Exception ) { print_r( $e->get_request() ); print_r( $e->get_response() ); } } ?> 

Solutions Collecting From Web of "Получить все заказы клиентов в WooCommerce API"