Skip to content

[nodebb-plugin-rss] RSS Feed plugin

NodeBB Plugins
222 49 293.1k 13
  • I was updated nodeBB to latest master branch, and plugin, but not get new feeds, as it's stop cronjobs.

    NodeBB commit:

    $ git rev-parse HEAD
    2de108153f7eb4d3c62d9e1c8c68c7fb6dd104c3
    

    Plugin version 0.2.3

  • Also, when I create a new feed, I get the field Entries with a text inside. Also de User fields not work when I typing the name, and sometimes when I click Save button, deletes other feeds.

    Here an image:
    upload-ba507ab2-a4d4-46c7-8f5e-e6f4ad42eb43

  • Hi gang! After upgrading to v0.6.x, it appears that the RSS plugin is pulling in feeds and posting the identical feed multiple times. Any way to fix this? See below:

    Screen Shot 2014-12-25 at 11.45.53 AM.png

  • Can you post the url of the rss feed and a screenshot of your rss plugin settings.

  • Is this plugin compatible with 0.6?

  • Can you post the url of the rss feed and a screenshot of your rss plugin settings.

    @baris Sorry for the late reply. Was on vacation without interwebs for a bit.

    Screen Shot 2015-01-04 at 12.10.13 PM.png
    Screen Shot 2015-01-04 at 12.10.35 PM.png

  • Can you post the url of the rss feed and a screenshot of your rss plugin settings.

    hi @baris, i have the same problem with the RSS plugin publishing 4 times the same subject

    have you seen this problem ?

  • Would it be possible to post the first entry in the RSS feed as a topic and then post the rest of the entries as replies?

  • How would this look in RSS spec?

  • How would this look in RSS spec?

    @julian

    Page: http://stackoverflow.com/questions/28843883/append-image-file-to-form-data-cordova-angular
    RSS: http://stackoverflow.com/feeds/question/28843883

    This RSS displays the first entry as the question that was asked and the rest of the entries are the answers that were posted.

  • Any advice for a JS noob to customize this script to use the "category term" IDs in RSS as Topic Tags?

    <category term="Dallas Cowboys"/>
    <category term="Dez Bryant"/>

    Sample RSS with categories/tags


    Also, the ability to post the first entry in the RSS feed as a topic and then post the rest of the entries as replies would be great to generate content on a new forum. It will help increase search engine traffic and eventually active members.

    I'll gladly donate $$ to whomever can help contribute to these requests. Thanks guys!

  • Jussst thought I would add this little snippet of code to the RSS plugin thread on this site. (so I can find it later)

    On my RSS feed I like to include the source of where the link of the rss or 'where the rss feed article' came from (url). edit/change it how you like.

    Add this extra line of code just after line 201 in index.js:

    201:			content = toMarkdown(content);
    202:			content += '\nSource: ' + entry.link + '\n'; <----- this line
    

    It will add a

    Source: http://www.rss.com/this/is/the/rss/link/here/page/story
    

    to the bottom of every rss feed so the user can click to go to the page posted by the 'nodebb-plugin-rss' Plugin

  • Hey folks -- new here. Really liking NodeBB and this RSS plugin. I get an error when I add a Google News feed though. I've included that below. Any thoughts on how to go about fixing this? This is the feed I used:

    I've created an issue in github: https://github.com/barisusakli/nodebb-plugin-rss/issues/9

    11/7 15:13 [1307] - error: TypeError: Cannot read property '1' of null
        at ELEMENTS.replacement (/home/lififorums/nodebb/node_modules/nodebb-plugin-rss/node_modules/to-markdown/src/to-markdown.js:75:70)
        at /home/lififorums/nodebb/node_modules/nodebb-plugin-rss/node_modules/to-markdown/src/to-markdown.js:100:41
        at String.replace (native)
        at replaceEls (/home/lififorums/nodebb/node_modules/nodebb-plugin-rss/node_modules/to-markdown/src/to-markdown.js:99:23)
        at toMarkdown (/home/lififorums/nodebb/node_modules/nodebb-plugin-rss/node_modules/to-markdown/src/to-markdown.js:82:16)
        at /home/lififorums/nodebb/node_modules/nodebb-plugin-rss/index.js:202:14
        at /home/lififorums/nodebb/src/database/mongo/sorted.js:325:4
        at handleCallback (/home/lififorums/nodebb/node_modules/mongodb/lib/utils.js:95:12)
        at /home/lififorums/nodebb/node_modules/mongodb/lib/collection.js:1064:5
        at handleCallback (/home/lififorums/nodebb/node_modules/mongodb/lib/utils.js:95:12)
    
  • Hey folks -- new here. Really liking NodeBB and this RSS plugin. I get an error when I add a Google News feed though. I've included that below. Any thoughts on how to go about fixing this? This is the feed I used:

    I've created an issue in github: https://github.com/barisusakli/nodebb-plugin-rss/issues/9

    11/7 15:13 [1307] - error: TypeError: Cannot read property '1' of null
        at ELEMENTS.replacement (/home/lififorums/nodebb/node_modules/nodebb-plugin-rss/node_modules/to-markdown/src/to-markdown.js:75:70)
        at /home/lififorums/nodebb/node_modules/nodebb-plugin-rss/node_modules/to-markdown/src/to-markdown.js:100:41
        at String.replace (native)
        at replaceEls (/home/lififorums/nodebb/node_modules/nodebb-plugin-rss/node_modules/to-markdown/src/to-markdown.js:99:23)
        at toMarkdown (/home/lififorums/nodebb/node_modules/nodebb-plugin-rss/node_modules/to-markdown/src/to-markdown.js:82:16)
        at /home/lififorums/nodebb/node_modules/nodebb-plugin-rss/index.js:202:14
        at /home/lififorums/nodebb/src/database/mongo/sorted.js:325:4
        at handleCallback (/home/lififorums/nodebb/node_modules/mongodb/lib/utils.js:95:12)
        at /home/lififorums/nodebb/node_modules/mongodb/lib/collection.js:1064:5
        at handleCallback (/home/lififorums/nodebb/node_modules/mongodb/lib/utils.js:95:12)
    

    Pretty keen on this getting updated. My old way of adding link to content doesn't seem to wrk anymore 😞

    Seems it randomly works and then doesn't again. It's acting a bit weird

    Any chance of an update @baris

    EDIT: got the rss's working again but my entry.link doesn't appear to work anymore ..hmm

  • ok I fixed it , now upgraded and nothing works !

  • Jussst thought I would add this little snippet of code to the RSS plugin thread on this site. (so I can find it later)

    On my RSS feed I like to include the source of where the link of the rss or 'where the rss feed article' came from (url). edit/change it how you like.

    Add this extra line of code just after line 201 in index.js:

    201:			content = toMarkdown(content);
    202:			content += '\nSource: ' + entry.link + '\n'; <----- this line
    

    It will add a

    Source: http://www.rss.com/this/is/the/rss/link/here/page/story
    

    to the bottom of every rss feed so the user can click to go to the page posted by the 'nodebb-plugin-rss' Plugin

    This post is deleted!
  • Look like @baris fixed the linked issue already? Either way, perhaps he'll update you tomorrow 😄

  • Latest nodebb version this is stable for anyone?

  • Latest nodebb version this is stable for anyone?

    @mudmanc4 I have the plugin running fine on http://pichalite.com NodeBB v0.9.3

  • @mudmanc4 I have the plugin running fine on http://pichalite.com NodeBB v0.9.3

    Thanks @pichalite I must have something else borked up, adding this plugin causes 100% + CPU loads on a page refresh.


Suggested Topics


  • 0 Votes
    1 Posts
    30 Views
    David Todd McCartyD
    Support An Independent Web ExperienceI’d like to invite you to explore my website, which is a collection of essays and stories that range from food to philosophy, culture to politics. There’s no paywall, and if you sign up (which I greatly appreciate), you get emails about new stories. No ads or promotion. I’m self hosted and entirely independent so this is the only way to build an audience. There is an RSS feed.#Writing #Stories #Introduction #IndieWeb #RSShttps://www.davidtoddmccarty.com
  • 8 Votes
    54 Posts
    25k Views
    <baris>B
    Published 1.1.0, update for nodebb 3.2.0 and up, also got rid of some warning messages on startup.
  • 11 Votes
    74 Posts
    43k Views
    phenomlabP
    @baris thanks for this. Really appreciated. We'll wait for 3.2.0 to drop.
  • How to install plugin locally?

    NodeBB Plugins plugin
    10
    0 Votes
    10 Posts
    7k Views
    B
    @julian But then I get the following, because it's not looking in the right place for the package.json: npm ERR! code ENOENT npm ERR! syscall open npm ERR! path /usr/bin/nodebb/nodebb-plugin-btcsso/package.json npm ERR! errno -2 npm ERR! enoent ENOENT: no such file or directory, open '/usr/bin/nodebb/nodebb-plugin-btcsso/package.json' npm ERR! enoent This is related to npm not being able to find a file. npm ERR! enoent npm ERR! A complete log of this run can be found in: /root/.npm/_logs/2023-05-16T09_24_17_811Z-debug-0.log
  • Trouble installing plugins and upgrading them

    Bug Reports npm bugs upgrade plugin
    9
    0 Votes
    9 Posts
    7k Views
    julianJ
    @a_5mith @Ted Now now play nice, upvotes for the both of you. @Ralkage There's no substitute for the fundamentals. Understanding javascript syntax first will help you in the long run. When I was hiring (way back when in my non-startup days), I'd see lots of devs with "jQuery experience", who couldn't code their way out of a box in plain javascript. @psychobunny and @baris would make fun of me here, because back then I suffered from the same lock-in, except it was MooTools that I was using instead of jQuery XD

Looks like your connection to NodeBB Community was lost, please wait while we try to reconnect.