https://github.com/developersteve/node-red-social-aggregator
Multiple social platform aggregator using the rivus lib on node-red
https://github.com/developersteve/node-red-social-aggregator
aggregation aggregator node-red node-red-contrib nodejs nodejs-modules social-media
Last synced: about 2 months ago
JSON representation
Multiple social platform aggregator using the rivus lib on node-red
- Host: GitHub
- URL: https://github.com/developersteve/node-red-social-aggregator
- Owner: developersteve
- License: apache-2.0
- Created: 2019-07-23T09:30:33.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2021-02-16T05:01:27.000Z (about 5 years ago)
- Last Synced: 2025-09-16T13:03:35.199Z (7 months ago)
- Topics: aggregation, aggregator, node-red, node-red-contrib, nodejs, nodejs-modules, social-media
- Language: HTML
- Homepage:
- Size: 14.6 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-red-social-aggregator
Multiple social platform aggregator using the rivus lib on node-red. The input object into the node-red node can be used to retreve user feeds from a multiple of sources with different keys (if needed). This makes the aggregation and normalisation of data easier as it retrieves and attempts to handle each of the below sources in a number of different ways.
### Node Input
To load send an array object to the node
```
[
{
"name": "rss",
"feed_url": "https://sitepoint.com/feed/"
},
{
"name": "twitter",
"user": "@developersteve",
"consumer_key": "eWxCQh9fLgzNRGA31pyaaaaaaa",
"consumer_secret": "mG75BmuM9EovWKRff3oLHLBs4r1pSB02IsssGqgtXdHhtsk8",
"access_token_key": "1234567878-bKOvuci3Dlcm2sssf2FeiQmi6y9F0hBZMk36EhSXI",
"access_token_secret": "c6Kh5BRSh5Yeq9sssadsd5i4zUozAtqLWEeczTOBJkMdRfpGz"
}
]
```
#### Input types
Example of input types and how to load them, these can be multiples and remember to watch the rate-limits when dealing with some of the API's (im looking at you twitter).
```
[
{
"name": "rss",
"feed_url": "https://developer.ibm.com/feed/"
},
{
"name": "instagram",
"user": "@developersteve",
"access_token": ""
},
{
"name": "medium",
"user": "@username"
},
{
"name": "medium",
"publication": "blog_title"
},
{
"name": "medium",
"publication_with_custom_domain": "http://www.developer.ibm.com"
},
{
"name": "twitter",
"user": "@developersteve",
"consumer_key": "",
"consumer_secret": "",
"access_token_key": "",
"access_token_secret": ""
},
{
"name": "facebook",
"app_id": "",
"app_secret": "",
"user_id": ""
}
]
```
### Node Output
Output response will be via ```msg.payload``` which should return something like the following
```
{
title: '',
content: '',
created_time: {},
images: {
thumbnail: {url: ''},
content: {url: ''}
},
link: "",
extra: {},
source: {
name: '',
feed: ''
}
}
```