0
votes

In yahoo pipes I have two rss feeds. Now I want to grab item content from second feed to compare it with item content in first feed. Based on GUIDs. If it matches I want the items from first feed in my output.

Can someone help pls?

Thanks

Bane

1
Why use Yahoo Pipes for this? - Julien Genestoux
because with yahoo pipes a can generate an RSS Link with the output - Bane

1 Answers

0
votes

Solved it with YQL Plugin query:

select * from rss where url='feed1' and guid in (select guid from rss where url='feed2')