yagop / node-telegram-bot-api

Telegram Bot API for NodeJS
MIT License
8.45k stars 1.53k forks source link

can I do bot execute other bot? #866

Closed JMR-Mejia closed 3 years ago

JMR-Mejia commented 3 years ago

Question

can I do bot execute other bot?

I want a bot scraper to give a list to music bot, Can I do?

Seventty commented 3 years ago

Try this.

require('child_process').fork('anotherbot.js')

https://nodejs.org/api/child_process.html The documentation about child process with nodejs.

JMR-Mejia commented 3 years ago

A bot can't call another bot, According to the Telegram API