kloon / WooCommerce-REST-API-Client-Library

A PHP wrapper for the WooCommerce REST API
GNU General Public License v3.0
356 stars 175 forks source link

i can't get all products #205

Closed AntoninoPlatania closed 7 years ago

AntoninoPlatania commented 7 years ago

When i use that

print_r( $client->products->get() );

stamp 10 products only

How i can get all my products?

Thanks

jeanrinvil commented 7 years ago

array( 'filter[limit]' => -1 ) in the get ()

AntoninoPlatania commented 7 years ago

thanks