1

Lets say we have a telegram bot running on node.js using node library: node-telegram-bot-api

Do we need to worry about any security problems, like can someone hack my server and access the source code or data through the API connection?

Doug Stevenson
  • 297,357
  • 32
  • 422
  • 441
Mr. Blockchain
  • 313
  • 1
  • 14
  • The bot can be served in two modes, one is long polling other is webhooks. long polling is more secure and your firewall will likely protect from external requests. If you use the other approach, you should be more cautious. https://core.telegram.org/bots/api#getting-updates – balki Feb 07 '18 at 00:15

1 Answers1

1

Don't worry about it, every API connection is through HTTPS, which is regarded as safe.

Sean Wei
  • 7,433
  • 1
  • 19
  • 39