I am wondering whether this can be achieved by using Yahoo Pipes?
- fetch two RSS feeds
- compare item.title fields of both feeds
- replace item.content with combined content of item.content fields if found similar item.title
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes it is possible but will need to involve a subpipe (pipe2 called from pipe1)…
Pipe2- This will takes a string input item title… Will “get Feed2″… filter off items whose title not equal to input item title… return the matching item.
Pipe1 – this will “get Feed1” and loop through all the items passing item title to Pipe2… the result from pipe2, if any, will be in node as loop:anything… add content from there to the content of feed1
Drawback: Theoretically feed2 will be called n number of times where ‘n’ is number of items in feed1… practically Yahoo pipes use cache so should not be a problem…