Telegram Bot Local API Server TimeOut when sending big file
I’m trying to send a large file using the local API Server. But when the file is uploaded I get the error aiogram.exceptions.TelegramNetworkError: HTTP Client says - Request timeout error.
WaterMark Bot Not Deploying
My Error
How to send post-request with telegram bot to website?
I’am trying to create a telegram bot which will send request to website.
Bot answers at “/fill” message, but doesn’t send request.
What am I doing wrong?
How to send different images with different captions telegram bot
So I’m trying to make a telegram bot that can send images with captions underneath, but i want every that every photo has a different caption. I’ve been trying for a long time and this is what i have right now :
TelegramBotQ&A AND How to resolve the issues
enter image description hereI am tryna create a telegram bot as part of my personal project. Despite having pip to install python-telegram-bot, there’s still the squiggly lines on my telegram and telegram.ext (Redere to screenshot. What should I do to resolve this issue? i am sad if i dont resolve this issue because code is love, code is life
Telegram bot does not scan all chat users
I want to add to my bot the ability to activate in a chat and have the bot immediately scan all the participants inside. As a result, the code gives an error and is not activated in the chat. Tell me what to do
How to get all telegram invite links in telegram-bot on python?
The telegram channel has a lot of invite links by which users join the channel. Can you tell me how I can get a list of these invitations and, if possible, who has joined or how many people have joined each of them?
TypeError: Updater.__init__() missing 1 required positional argument: ‘update_queue’
Im trying to create a telegram bot with the air tickets
` import telegram
import requests
from telegram.ext import Updater, CommandHandler
from config import TOKEN
telegram bot API ‘setMyName’ doesn’t work
Here is my code import requests import json bot_token = ” ” # your bot token token_url = f”https://api.telegram.org/bot{bot_token}/” parameters = { “name”: “sdfjk123”, “language_code”: “en” } headers = { “Content-Type”: “application/json”, } print(token_url+’setMyName’) def set_name(): r = requests.post(token_url+’setMyName’, json=json.dumps(parameters), headers=headers) print(r.json()) set_name() Here is the error message returned by the request {‘ok’: False, ‘error_code’: […]
Problems with Updater in python trying to create telegram bot
I have tried reinstalling the libraries but I am still receiving the same error.