You can make authorization via Telegram another way. It works. But today we want to do the classic OAuth Authorization. Before you begin, you need to create a Telegram bot and obtain your bot token. You can do this in @BotFather in Telegram. For more information on initiating a bot, read the Telegram Bot API documentation: https://core.telegram.org/bots. - Source: dev.to / 2 months ago
Creating a Telegram bot is fun: there's no website, no sign up, no forms — you just use a... bot. Yes, a bot that creates bots. It's called the BotFather 😂. - Source: dev.to / 6 months ago
It's done via bots, which let you add clickable options to posts. Here's an FAQ on bots: https://core.telegram.org/bots. Source: 10 months ago
We'll create a class Bot, which will be the core of our program (that's unsurprising, considering we're writing the telegram bot). During its instantiation, it will read the token from your telegram bot (to learn how to register one go here) and build a basic bot app. Along with this, we're gonna add two async methods to our class, which will serve as message handlers (functions that are invoked when a specific... - Source: dev.to / 12 months ago
Have a look at the intro page to telegram bots. Source: over 1 year ago
> Telegram doesn't support bots I think it does: https://core.telegram.org/bots. - Source: Hacker News / over 1 year ago
Bots: An introduction for developers (official Telegram website). - Source: dev.to / over 1 year ago
In this guide, we saw how telegram can be integrated into a react app, walking through the process of creating a bot to sending a message to a telegram user via the Telegram Bot API. We also saw how to connect our application to Sanity studio for content management. - Source: dev.to / over 1 year ago
I am fond of using Telegram bots in my projects because it is simple to create and manage them with lots of features. You can get more information from here. Source: over 1 year ago
I wanted to code a tool that lets me send messages to a WhatsApp account as well but got deterred from that rather quickly as it does not seem like WhatsApp has an API that can be used freely. I then looked at Telegram and they have what they call the Telegram bot API where you can set up a bot with which you can receive and send messages, gifs, stickers and so on. It’s a bot complicated to start but there are... Source: over 1 year ago
Following the Telegram bot guide, you start by looking for @botfather in Telegram and following the instructions to create a new bot. Give your bot a meaningful name, description and profile picture. - Source: dev.to / over 1 year ago
Exactly, but it is really simple to create one. Just checkout https://core.telegram.org/bots. Source: over 1 year ago
All the above Functionalities are added to the bot by making use of the required APIs and using the functionalities of telegram bot API, details of which are provided here: https://core.telegram.org/bots/. - Source: dev.to / almost 2 years ago
Maybe by connecting music APIs with Telegram APIs, like for Telegram bots. Source: almost 2 years ago
Telegram Bot (how to create a bot) requires curl (sudo apt install curl). - Source: dev.to / almost 2 years ago
Import Binance from 'binance-api-node' Import TelegramBot from 'node-telegram-bot-api' Import dotenv from 'dotenv' Import { formatMoney } from './utils/money.js' Dotenv.config() // API keys can be generated here https://www.binance.com/en/my/settings/api-management Const binanceClient = Binance.default({ apiKey: process.env.BINANCE_API_KEY, apiSecret: process.env.BINANCE_API_SECRET, }) // The bot token can... - Source: dev.to / about 2 years ago
Https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating. Source: about 2 years ago
Telegram Bot Receiver - Hit up the Telegram Bot documentation for how to create a bot, and how to control it (or receive data from it) using HTTP requests. You could look into a language-specific wrapper to ease matters (such as python-telegram-bot for Python). The objective: whenever it receives a message, it sends it to process(message). Source: about 2 years ago
To test the application using the bot, you need a Telegram account and your own bot (here is an introduction on this topic). Depending on the chosen launch option, a token of the bot should be specified here or here. - Source: dev.to / about 2 years ago
Telegram has some nice features from a user's perspective (arbitrary filetype file attachment, animated voice records so I can skip quiet portions, good chat search, private chat support, and video-/picture-/file-/message -specific search). But, one of the main utilities on Telegram is its bot platform. And, as a developer: Building bots with Telegram is difficult. This is mostly a documentation issue. AFAIK this... - Source: Hacker News / about 2 years ago
Try using the "/setcommands" command in the BotFather to add a quick-menu for the commands in your bot. Usage is described here. - Source: dev.to / about 2 years ago
Do you know an article comparing Telegram bot API to other products?
Suggest a link to a post with product alternatives.
This is an informative page about Telegram bot API. You can review and discuss the product here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.