Hi. If I load a page with the news of my catalog by RSS ( included in magento ) I get an xml with 50 references. Would there be any way to increase the number to 500 for example?
Thanks
Hello @javier_rey
You can use the numResults
parameter to specify the number of results, which appears to max at 50 items. To access beyond that many items, you can use the startNum
parameter to iterate through the results.
Examples:
https://www.npr.org/rss/rss.php?id=4473090&numResults=50
https://www.npr.org/rss/rss.php?id=4473090&startNum=51&numResults=50
Reference: https://www.npr.org/api/inputReference.php
Mmm...my url seems like this:
https://myweb.com/rss/feed/index/type/category/cid/36/
So, if I try to add the numResults parameter is not changing the number of results.