
* improve inline_keyboard example app Signed-off-by: mbehboodian <29199390+xeptore@users.noreply.github.com> * add examples bot instantiation error handling Signed-off-by: mbehboodian <29199390+xeptore@users.noreply.github.com> --------- Signed-off-by: mbehboodian <29199390+xeptore@users.noreply.github.com>
42 lines
932 B
Go
42 lines
932 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"os/signal"
|
|
|
|
"github.com/go-telegram/bot"
|
|
"github.com/go-telegram/bot/models"
|
|
)
|
|
|
|
// Send any text message to the bot after the bot has been started
|
|
|
|
func main() {
|
|
ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt)
|
|
defer cancel()
|
|
|
|
opts := []bot.Option{
|
|
bot.WithDebug(),
|
|
bot.WithDefaultHandler(handler),
|
|
}
|
|
|
|
b, err := bot.New(os.Getenv("EXAMPLE_TELEGRAM_BOT_TOKEN"), opts...)
|
|
if nil != err {
|
|
// panics for the sake of simplicity.
|
|
// you should handle this error properly in your code.
|
|
panic(err)
|
|
}
|
|
|
|
b.Start(ctx)
|
|
}
|
|
|
|
func handler(ctx context.Context, b *bot.Bot, update *models.Update) {
|
|
params := &bot.SendPhotoParams{
|
|
ChatID: update.Message.Chat.ID,
|
|
Photo: &models.InputFileString{Data: "AgACAgIAAxkDAAIBOWJimnCJHQJiJ4P3aasQCPNyo6mlAALDuzEbcD0YSxzjB-vmkZ6BAQADAgADbQADJAQ"},
|
|
Caption: "Preloaded Facebook logo",
|
|
}
|
|
|
|
b.SendPhoto(ctx, params)
|
|
}
|