Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marvnc/twitter-rss-discord-webhook
Automatically post and translate Twitter feeds into multiple languages on Discord channels via Nitter RSS webhook integration.
https://github.com/marvnc/twitter-rss-discord-webhook
discord discord-twitter-bot fxtwitter nitter twitter
Last synced: 11 days ago
JSON representation
Automatically post and translate Twitter feeds into multiple languages on Discord channels via Nitter RSS webhook integration.
- Host: GitHub
- URL: https://github.com/marvnc/twitter-rss-discord-webhook
- Owner: MarvNC
- Created: 2023-09-06T03:33:54.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-11T21:08:10.000Z (12 months ago)
- Last Synced: 2023-11-11T22:20:51.662Z (12 months ago)
- Topics: discord, discord-twitter-bot, fxtwitter, nitter, twitter
- Language: JavaScript
- Homepage:
- Size: 13.7 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Twitter to Discord Webhook
This script posts Twitter feeds to a Discord webhook via a Nitter RSS feed. Notably, this script supports translation of the tweets using DeepL and replaces the tweet links with [fxtwitter/FixTweet](https://github.com/FixTweet/FixTweet) for better Discord embeds. Note that Nitter RSS is not supported by every instance of Nitter - you can view a list of supported instances [here](https://status.d420.de/).
## Usage
- Clone this repo
- Create a `settings.json` file based on `settings.example.json` with your settings. You can simply copy the example file and rename it.
- Install dependencies: `pnpm install`
- Run the script: `npm start`> [!IMPORTANT]
> This script only works on Node versions 18 and above.## Settings
The `settings.json` file contains the following configuration:
```json
{
"settings": {
"interval_minutes": "5",
"seconds_between_feeds": "15",
"deepl_api_key": "apikey"
},
"feeds": [
{
"rss": "https://nitter.poast.org/Reuters/rss",
"webhook": "https://discord.com/api/webhooks/asdfg",
"translate": "en"
}
]
}
```### Settings
- `interval_minutes` - How often to check feeds, in minutes. Default is 5.
- `seconds_between_feeds` - How long to wait between checking each feed, in seconds. Default is 15. This is to prevent rate limiting.
- `deepl_api_key` - API key for DeepL translation. Get one for free at https://www.deepl.com/pro-api/.### Feeds
The `feeds` array contains objects with the following properties:
- `rss` - The Nitter RSS feed URL to check.
- `webhook` - The Discord webhook URL to post to.
- `translate` - (Optional) Language code to translate the post to before sending. Uses DeepL translation.Any number of feeds can be added to the array.