I am using Woocommerce rest api with react native. I am trying to get list of all categories but I am getting maximum 10 items.
const WooCommerce = new WooCommerceRestApi({url: "xxxxxs", // Your store URL
ssl: true,
consumerKey: "xxxxx", // Your consumer secret
consumerSecret: "xxxxxx", // Your consumer secret
wpAPI: true, // Enable the WP REST API
integration version: "wc/v3", // WooCommerce WP REST API version
queryStringAuth: true,})
const categories = await WooCommerce.get( "products/categories?per_page=50")
console.log(categories)
I am getting this response:
You need to pass parameters this way:
...
parameters = {}
parameters[per_page] = 1
categories = await WooCommerce.get("products/categories/", params=parameters)