telegram Questions
4
I've tried to do user verification script for telegram web app for bots. I have no idea how to fix it.
import sha256 from 'js-sha256'
const telegram = window.Telegram.WebApp
const bot_token = '<...
Aggri asked 26/4, 2022 at 8:32
4
Solved
import asyncio
from threading import Thread
from datetime import datetime
from aiogram import Bot, Dispatcher, executor, types
API_TOKEN = ''
bot = Bot(token=API_TOKEN)
dp = Dispatcher(bot)
chat...
Photoplay asked 27/12, 2019 at 14:46
2
Solved
I develop telegram bot using python-telegram-bot.
Despite the usage of MessageQueue (just as mentioned in the docs) I keep getting
telegram.error.RetryAfter: Flood control exceeded. Retry in N seco...
Lollygag asked 19/7, 2018 at 12:48
2
I am developing a simple Telegram chat bot using python-telegram-bot library. My bot is currently using the ConversationHandler to keep track of the state of the conversation.
I want to make the c...
Nondisjunction asked 21/3, 2020 at 1:19
2
Solved
I have registered a web app which is launched by the direct link, the link format is like this:
https://t.me/botusername/appname
This link can open a fixed url as configured using the bot father, b...
Rosalia asked 16/6, 2023 at 1:35
3
Solved
I'm trying to use a Telegram BOT to send messages to a group. First, I thought that it'd be enough to know the group chat id to accomplish that, but it's not. The BOT MUST be part of that group. OK...
Haldis asked 14/9, 2015 at 18:55
4
Solved
I know it sounds stupid but I am facing an issue obtaining api_id and api_hash as per https://core.telegram.org/api/obtaining_api_id . When clicking on "Create Application" I am receiving the error...
4
Solved
I've been trying to solve this for three days and none pf the solutions I've found online seem to work, so I am going to have to ask for help.
I want to create a Telegram "Group Chat" to ...
Ila asked 16/6, 2022 at 5:3
7
I want to build my mobile web application written in flutter in Telegram. At the same time, there is a problem: when scrolling down, the application collapses, as if I were collapsing the bottom sh...
Preform asked 5/8, 2023 at 16:29
2
Trying to answer inline query with the sticker cause error 400 Bad Request: STICKER_DOCUMENT_INVALID.
My response looks like following
const sticker = {
type: 'sticker',
id: '0',
sticker_file_...
2
Solved
I would like to know if via a Browser URL I can open the Telegram chat of a specific user and at the same time pre fill the first message with a text passt over the URL.
I know that I can open the ...
Ridgeling asked 4/11, 2021 at 10:43
2
Solved
I'm trying to move my first steps in Telegram, so sorry for the entry-level question.
I'm trying to use some simple Bot that I'd like to replicate and then evolve them: testing these bots from Tel...
Duster asked 20/11, 2015 at 21:55
7
Solved
In my app want to use Intent to open specific telegram channel or telegram group. i search in SF but i can't find anything.i try to implement but i only can open all messenger apps that user can ch...
7
I can't find an example of sending message by telegram protocol from C#. I tried to use this but failed.
Can you give me any examples?
11
I am sending message to telegram channel using bot.
With using webhook method.
I'm sending file_id via the link. I got the file_id from a channel post.
For some files like GIF & video format...
Where asked 9/3, 2017 at 14:19
3
Solved
def bot_start():
application = ApplicationBuilder().token("api_key").build()
async def stop(update, context):
await context.bot.send_message(chat_id=update.message.chat_id, text='Ter...
Ombudsman asked 18/11, 2022 at 4:25
3
Here I found a very useful answer showing how to send a pre-filled message from a website using whatsapp.
Can we do the same with Telegram?
Heel asked 5/11, 2019 at 18:43
30
Solved
I'm trying to register new app to use the Telegram API, but I'm always getting ERROR message with no tips.
I fill the form and click submit and nothing happened:
And when click submit I'm getting ...
Kelvin asked 29/6, 2016 at 15:53
8
Using Telegram Bot API,
I'm aware that it is possible to send an image via https://core.telegram.org/bots/api#sendphoto
However, how can I embed a remote image into a formatted message?
The mes...
Tepic asked 31/7, 2016 at 15:40
2
Solved
How to resolve TypeError: __init__() missing 1 required positional argument: 'update_queue'?
I want to create a Telegram bot that checks for a new post on a website (currently every 15s for testing purposes). If so, it should send a message with content from the post into the Telegram chan...
Meow asked 6/2, 2023 at 15:3
3
Solved
I am trying to send a message on a chat on telegram.
I want telegram setups to be done only with the official UI as I want it to be possibly done by by an end user.
Here are telegram setup I do:
I...
Occam asked 16/1, 2021 at 18:3
6
I'm programming a python robot in the telegram, but I have an error that is not resolved, the error is in the schedule
Traceback (most recent call last):
File "C:\Users\vini6\AppData\Local\Pa...
Lizliza asked 11/1, 2022 at 20:39
4
Solved
I'm looking for a way in telegram group that don't let member to send message or, delete message after a person send.
Is it possible to create a bot like this how help admins to stop chatting afte...
Disgrace asked 7/1, 2017 at 12:6
7
Solved
So I've built a Telegram bot, which can receive the following commands:
/list
/info 123
This works great, as I can catch /info and pass the additional arguments as ints. But, sadly, the Telegra...
Abbey asked 17/3, 2016 at 11:42
3
I'm currently working on with telegram Bot API, but I have to validate the markdown syntax to prevent parse errors. But telegram bot api's markdown doesn't follow the regular markdown syntax so I'm...
Coolie asked 5/2, 2021 at 4:11
1 Next >
© 2022 - 2024 — McMap. All rights reserved.