[nodebb-plugin-rss] RSS Feed plugin
-
For a bonus, duplicate Title checks as well.
-
@Pyrax sent a PR for the duplicate post issue, merged and published 0.2.1
Fix duplicate post issue by Pyrax ยท Pull Request #6 ยท barisusakli/nodebb-plugin-rss
This should fix the known issue which resulted in posting the last entry of a RSS feed multiple times.
GitHub (github.com)
-
@Normando Hey buddy, sort of. Your mileage may vary with this one. It depends how Baris' plugin works.
Youtube has an RSS feed you can use, but I'm not sure quite how it would work with this plugin. Add this to your RSS feed input box, then where you want it to go, then test it I guess.
https://gdata.youtube.com/feeds/api/users/USER_ID/uploads
Replace USER_ID with the usernameor channel ID of the youtube channel. (You can enter this URL into your browser and it will return the feed. For example: This Link would show you all the videos from Tom Scott in RSS feed format.
EDIT: You can also use this link to fetch the images as well if you want slightly more information.
https://gdata.youtube.com/feeds/base/users/USER_ID/uploads
-
@julian Haha, he would if I could test it.
Doesn't seem to be working for me. I add the RSS feed and it seems to do an initial pull (I have it set for 1 minute) but doesn't continue looking (or at the very least, nothing new gets added).
Very strange how I delete the RSS feed, add it. It pulls all items and they show up fine. Duplicate appear to have stop showing up, but nothing new shows up either for me, it seems. Unfortuantely there's no verbose output when running nodebb dev so I can't see it trying to do anything either.
I'll keep messing around with it and see if it's something on my end I guess.
-
If there are any errors the plugin logs them to the console or the output.log file in your nodebb folder.
If you want to add more logging you can modify the plugin source to see what's going on.
For example if you want to see what the plugin pulls from google every minute you can add a
console.log(entries);
here. -