How to do custom pagination using woocommerce rest api in my android app?
问题 In my android app I am using woocommerce rest api to fetch products from my inventory. As per the documentation "Requests that return multiple items will be paginated to 10 items by default." I need to fetch 25 items per request. As per the documentation I have tried many things but unfortunately I didn't get any success. For pagination I tried "mysite/wc-api/v3/products/"+"?page="+pageNum; Using this I get first 10 products for pageNum = 1, 11-20 i.e next set of 10 items using pageNum = 2