Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser
Quick Information
Telegram Bot API
A GDScript addon to interact with a Telegram Bot in Godot Engine.
Supported Engine Version
3.3
Version String
1.0
License Version
MIT
Support Level
community
Modified Date
3 years ago
Git URL
Issue URL
godot-engine.telegram-bot-api
A GDScript addon to interact with a Telegram Bot in Godot Engine.
extends Node
func _ready():
var bot : TelegramBot = TelegramAPI.get_bot("<YOUR BOT TOKEN>")
bot.connect("new_event", self, "_on_bot_event")
bot.start_polling(1.0)
bot.send_message(TelegramMessage.new("<CHAT ID>", "_Test Message_", TelegramMessage.ParseModes.MARKDOWN))
func _on_bot_event(event : Dictionary) -> void:
print(event)
A GDScript addon to interact with a Telegram Bot in Godot Engine.
Reviews
Give us documentation!
kitaev_maksim
Rated positive
Hello, I would like to receive documentation about this plugin, as I do not quite understand what and how it works.
Is it possible to create Input Keyboard on this plugin?
Give us documentation!
kitaev_maksim
Rated positive
Hello, I would like to receive documentation about this plugin, as I do not quite understand what and how it works.
Is it possible to create Input Keyboard on this plugin?
Quick Information
Telegram Bot API
A GDScript addon to interact with a Telegram Bot in Godot Engine.
Supported Engine Version
3.3
Version String
1.0
License Version
MIT
Support Level
community
Modified Date
3 years ago
Git URL
Issue URL