Hi there,
I am playing around with the following scenario:
The idea is that i watch for new published posts on the UK blog, look for links in that post, find the corresponding hreflangs for the IE site and repost the content but with the hreflang URLs for IE instead.
This works in the scenario above. In the example i watched 1 new post appear that had 3 URLs in it. These are parsed with a text parser. Output is in 3 bundles.
These 3 URLs are then fetched with the HTTP request to get the hreflang data. This results in 3 operations each getting the hreflang value for IE (and other languages) for the 3 UK URLs.
In the next parser i extract the IE specific hreflangs resulting in 3 operations with the correct IE hreflangs.
Next i am confused. I am using another text parser to replace the original UK URLs in the Wordpress blog text with the IE ones. This works but ultimately results in 3 posts on the IE Wordpress site.
I guess i need to put Iterators and/or Aggregators somewhere but would not know where to start. Any ideas?