Skip to content

rehost of daaniiieel/discord-telegram-bridge since the repo seems to be deleted

License

Notifications You must be signed in to change notification settings

gnuno/discord-telegram-bridge

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Discord-Telegram-bridge

GitHub top language Maintenance GitHub code size in bytes GitHub package.json version badge count

A small and fast telegram to discord chat bridge, written in node

Setup:

If you want to run it on heroku, you can just click the button below.

Deploy

  • Clone the github repo

  • Execute npm install

  • Create a Discord webhook. You can do this by going to Server settings -> Webhooks. Copy the URL, you'll need it later.

  • Set env variables:

    TELEGRAM_BOT_TOKEN - you can get this by speaking with @BotFather on telegram and creating a new bot.

    DISCORD_TOKEN - the bot token for your Discord application. Create a new app at the Discord Developer Portal, go to the bot section, click on Create a bot and copy the bot token it gives to you.

    TELEGRAM_CHAT_ID - The ChatId of the telegram group you want to bridge

    DISCORD_CHANNEL_ID - The Discord ChannelId of the channel you want to bridge

    webhook_id and webhook_token. Those are part of the webhook URL you copied. webhook_id is a 18 characters long int, webhook_token is a ~70 chars long randomly generated string. Those are seperated by slashes in the url.

  • Run npm start or node server.js and you're set!

Explicación en cristiano

El env tiene que tener varios campos:

DISCORD_TOKEN= 
TELEGRAM_BOT_TOKEN=
TELEGRAM_IDS=["TELEGRAM_ID_CHANNEL"]
DISCORD_ID=["DISCORD_ID_CHANNEL"]
DISCORD_WEBHOOKS=["WEBHOOK_ID/WEBHOOK_TOKEN"]

El DISCORD_TOKEN es el token de tu app de discord, es decir el bot. El TELEGRAM_BOT_TOKEN es el token del bot de telegram, para crear un bot de telegram @BotFather. El TELEGRAM_IDS es un array de strings con los ids de los canales de telegram que quieres que sean convertidos a canales de discord. Para saber un ID de un canal primero ejecuten el bot, y luego agreguen al bot al chat, y luego copie el ID del chat. Esto aparecera en la consola.

Lo copian y lo pegan en el arreglo de IDs pero encomillados.

El DISCORD_ID es un arreglo con los ID de los canales de discord que quieras mapear.

Se puede conseguir con click contrario en cualquier canal

En el arreglo de DISCORD_WEBHOOKS almacenas los webhooks con el formato: ID/TOKEN

Estos se pueden crear de la siguiente manera:

Entrando en la configuración de cualquier canal:

Y Copias la URL del webhook:

Te dara una URL como esta:

https://discord.com/api/webhooks/id/token

La recortas y te quedas con: id/token

Esto lo pegas en el env de manera encomillada.

About

rehost of daaniiieel/discord-telegram-bridge since the repo seems to be deleted

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 99.8%
  • Procfile 0.2%