televerse 1.12.5 copy "televerse: ^1.12.5" to clipboard
televerse: ^1.12.5 copied to clipboard

retracted

Televerse lets you create your own efficient Telegram bots with ease in Dart. Supports latest Telegram Bot API - 7.0!

example/main.dart

import 'dart:io';

import 'package:televerse/telegram.dart';
import 'package:televerse/televerse.dart';

final bot = Bot(Platform.environment["BOT_TOKEN"]!);

void main(List<String> args) {
  final articles = [
    InlineQueryResultArticle(
      id: "1",
      title: "Flutter is awesome",
      inputMessageContent: InputTextMessageContent(
        messageText: "Flutter is awesome",
      ),
    ),
    InlineQueryResultArticle(
      id: "2",
      title: "Televerse is a cool Telegram bot framework",
      inputMessageContent: InputTextMessageContent(
        messageText: "Let's try Televerse",
      ),
      url: "https://pub.dev/packages/televerse",
    ),
  ];

  bot.inlineQuery("articles", (ctx) async {
    await ctx.answer(articles);
  });

  bot.inlineQuery("photos", (ctx) async {
    final flutterPic =
        "https://storage.googleapis.com/cms-storage-bucket/70760bf1e88b184bb1bc.png";
    final televersePic =
        "https://repository-images.githubusercontent.com/582727042/e7c34ce1-d095-4f7f-81c8-4cf3dbe924b8";
    final photos = [
      InlineQueryResultPhoto(
        photoUrl: flutterPic,
        thumbnailUrl: flutterPic,
        id: "Flutter",
      ),
      InlineQueryResultPhoto(
        photoUrl: televersePic,
        thumbnailUrl: televersePic,
        id: "Televerse",
      ),
    ];

    await ctx.answer(photos);
  });

  bot.start();
}
83
likes
0
points
1.57k
downloads

Publisher

verified publisherxooniverse.com

Weekly Downloads

Televerse lets you create your own efficient Telegram bots with ease in Dart. Supports latest Telegram Bot API - 7.0!

Repository (GitHub)
View/report issues

Topics

#telegram #bot #chat #telegram-bot-api #bot-framework

License

unknown (license)

Dependencies

dio

More

Packages that depend on televerse