Custom Component to Implement Multiple Crawls
Per https://community.khoros.com/t5/Developer-Knowledge-Base/Implementing-federated-search-using-a-crawl-list/ta-p/7275, I can implement a crawl of a blog, output is a list of the component article URLs.
Format for crawl URL = https://[community URL]/[community ID]/crawl_boards?board.id=[board ID] .... this works.
However, I want to crawl about 20 blogs, in order to create a sort of site map specific to blogs, specifically for SEO purposes.
I have created a component that has the crawl URLs in a list, and it only crawls the first one, then stops.
I also created a component for each of the crawl URLs, and a component (loosely named after the blog) to call them (just for testing), like:
<@component id="alliancesblog" />
<@component id="storage-block" />
<@component id="labs" />
... but again, only the first one executes.
Is there a way to make more than one crawl execute?