Expand description
Autogenerated telegram bot api wrapper using api spec from https://github.com/PaulSonOfLars/telegram-bot-api-spec. Generates a full serde-based telegram bot api wrapper with idiomatic design patterns.
Features
- Automatically kept up to date with the latest telegram api
- Minimal fluff and boilerplate
- Full async support with tokio
- Support for both long polling and webhooks
- Automatically generated documentation
Examples
Use webhooks to fetch updates
use botapi::gen_types::FileData;
use botapi::bot::Bot;
use botapi::ext::{Webhook, BotUrl};
use std::net::{SocketAddr, Ipv4Addr, IpAddr};
use futures_util::StreamExt;
let client = Bot::new("sometoken").unwrap();
Webhook::new(
   &client,
   BotUrl::Host("example.com".to_owned()),
   false,
   SocketAddr::new(IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)), 8080),
   None,
)
.get_updates()
.await.unwrap()
.for_each_concurrent(
    None,
    |update| async move {
        //handle update
    },
);
})Send messages or media
use botapi::gen_types::{FileData, Message};
use botapi::bot::Bot;
let client = Bot::new("sometoken").unwrap();
let bytes = vec![1,2,3];
client
    .build_send_photo(
        message.get_chat().get_id(),
           FileData::Bytes(bytes),
    )
    .caption("If you do not solve this captcha correctly you will be terminated by memetic kill agent")
    .reply_to_message_id(message.get_message_id())
    .build()
    .await.unwrap();
})Modules
- Wrapper type for telegram bot api
- Various helpers to manage receiving updates via webhooks or long polling, or to better map json types onto rust design patterns
- Autogenerated REST api methods
- Autogenerated REST api types from json