I'm using a Woocommerce REST client API to get products from a Wordpress website. However, when I execute this command:
this->client->products->get();
to get all products, I only have 10 products returned. What might be the problem?
Setting Blog pages show at most property is not the solution to this problem. By doing that you're changing behaviour of other pages on your site too. Use following code instead:
$this->client->products->get(null, array('filter[limit]' => -1));
use -1 to get all the products or just use any number to limit it upto that number.
numberpostsorposts_per_pageparameter with your request. - rnevius