https://github.com/harium/sunbot-telegram
Plugin to turn your Suneidesis Chatbot into a Telegram Bot
https://github.com/harium/sunbot-telegram
chatbot suneidesis suneidesis-chatbot telegram
Last synced: over 1 year ago
JSON representation
Plugin to turn your Suneidesis Chatbot into a Telegram Bot
- Host: GitHub
- URL: https://github.com/harium/sunbot-telegram
- Owner: Harium
- License: mit
- Created: 2022-07-11T17:07:45.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-14T04:50:43.000Z (almost 4 years ago)
- Last Synced: 2025-01-24T14:14:28.123Z (over 1 year ago)
- Topics: chatbot, suneidesis, suneidesis-chatbot, telegram
- Language: Java
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sunbot-telegram
Plugin to turn your Suneidesis Chatbot into a Telegram Bot
## How to get your token
- Create a chat with the @BotFather a select the option /newbot
- Pick a name
- Pick an username ending with _bot (*_bot)
- Done!
https://www.siteguarding.com/en/how-to-get-telegram-bot-api-token
## How to use it
```
Parser bot = new EchoBox(); // Use your own parser
String token = "123456:ABCDE123456";
Telegram telegram = new Telegram(token);
telegram.init();
telegram.addParser(bot);
```