An example custom integration that automates posting new articles into a predefined Workplace group when new content appears on a given RSS feed.
FeedPoster requires the Manage group content permission
- Create a new Custom Integration app with Manage group content permission.
- Check out the code and deploy to a server capable of hosting node.js applications.
- Run
npm install
to install the required modules - Modify the
.env
file to include theACCESS_TOKEN
for your app, the group ID for yourTARGET_GROUP
and a URL for the RSS feed you want to use, and start the node application by runningnode clock.js
This app uses the cron
module for scheduling. Visit the cron project page for details on how to use it for custom scheduling.