Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
68 views

I have a Telegram Mini App built with NextJS where I serve it on Railway with Cloudflare as proxy. I created a custom domain and registered the CNAME to Cloudflare and everything works fine on IOS, ...
Ahmet Yazıcı's user avatar
-4 votes
0 answers
43 views

I've built a bot and and linked it to my telegram, it's fully functional the only problem is I can't access it on different devices as it shuts out the other devices and only focuses on the last ...
Moothly Excellent's user avatar
-4 votes
0 answers
35 views

My Laravel 7 project is running on the server. I added a Telegram bot to it using Laravel itself. But when I upload it to the server, it shows an error. I zipped the 'irazasyed' folder inside the ...
Anvarbek Ergashev's user avatar
1 vote
1 answer
58 views

I’ve built a Telegram bot hosted on Google Apps Script, using a webhook to handle updates. When I click on an inline button, the bot sends the correct reply, but it keeps repeating the same response ...
Joey Perkins's user avatar
0 votes
1 answer
74 views

i have an Aiogram project and get errors in log file. The error log doesn't provide information about where exactly in the project this happened, only information about where in the package it ...
Ivan Voznyuk's user avatar
0 votes
0 answers
72 views

I am using PHP with Guzzle to send a document via Telegram Bot API using sendDocument. The file is hosted on Amazon S3 with a URL like: https://telegramfile.xxx.amazonaws.com/file/preview/chat/...
李西安子's user avatar
4 votes
1 answer
172 views

I have a telegram bot (@TEVOProjAttBot) I created to upload event attendances on Google sheet. However, the commands "/start", "/help", "/add" doesn't work as it should, ...
Jin Siang's user avatar
0 votes
1 answer
69 views

Here's my code. When I run it, it only displays "Sending" and that's it. I don't understand what the problem is.The id passed to the function and the path to the photo have been changed for ...
user31645108's user avatar
2 votes
1 answer
70 views

I have a set of functions written in Pyrogram that make up a user bot that copies media messages from one Telegram channel to another. The problem is that it doesn't copy the media messages in the ...
user31645108's user avatar
3 votes
2 answers
919 views

I created a Telegram bot using the Botfather and got token for that bot. Visiting the following url in browser worked fine to send message on Telegram. https://api.telegram.org/bot<123:Token>/...
toygr's user avatar
  • 159
0 votes
0 answers
144 views

In Telegram docs, https://core.telegram.org/bots/webapps#initializing-mini-apps, To connect your Mini App to the Telegram client, place the script telegram-web-app.js in the <head> tag before ...
Dmitriy's user avatar
1 vote
1 answer
127 views

InlineKeyboardButton with callback_data doesn't work. When I click on it, nothing happens. Here is how I create the button: from django.apps import apps from asgiref.sync import sync_to_async from ...
g_0008's user avatar
  • 11
0 votes
0 answers
80 views

Can anyone explain what is BotApiMethod<?> onWebhookUpdateReceived(Update update) method used for? I am developing a telegram webhook bot in java spring boot and i have been using @...
Анатолий's user avatar
0 votes
0 answers
728 views

I’m building a Python Telegram bot (using paid version of Chat GPT), deployed as a background service on Render. The bot runs every 5 minutes and performs: Symbol screening via Bybit API (aiohttp) ...
Ekaterina Ilina's user avatar
0 votes
2 answers
161 views

I am trying to get all messages from a supergroup in Telegram with every message's sender name and topic name in a text file using telethon, but I can't find how to get the topic ID from a Message ...
MihMas's user avatar
  • 1
0 votes
0 answers
603 views

[Description: Hello, Stack Overflow community! I am developing a Telegram bot using Python with the python-telegram-bot librarythat interacts with a business account to send gifts to users. The ...
user31047982's user avatar
1 vote
1 answer
65 views

I am using the python-telegram-bot package to develop a Telegram bot. I was wondering if it's possible to access the details of a message that has been replied to from another chat? Broader ...
Obidjon Raimov's user avatar
0 votes
0 answers
140 views

I am building a Telegram Mini App. I want it to open in a half-screen drawer (compact mode), not in full screen. Here’s what I’ve done: Set the Mini App mode to compact using BotFather: BotFather → ...
Rushikesh Phalle's user avatar
1 vote
1 answer
210 views

I am creating a userbot. I can't figure out how to implement it: when I am offline from Telegram (I exit the app), it automatically changes the name in one way and when I am online in another. I can't ...
Emiliano Ps5's user avatar
0 votes
1 answer
130 views

I am new to using Telegram and I'm trying to validate the hash provided by Telegram's initData for a webapp mini app (not the login widget) in Java, using the steps from the official Telegram ...
eccentricCoder's user avatar
0 votes
0 answers
39 views

On my bot side, I am sending an InlineKeyboardButton with an app router link with couple of parameters webapp_url = f'{base_url}/?param1={rid}&parama2={uid}' I want to be able to open it full ...
SBF's user avatar
  • 357
0 votes
0 answers
64 views

I'm developing a Telegram bot, and I want to generate clickable user mentions in admin reports. These mentions should: Link to the user's profile Work on all platforms Handle any kind of Telegram ...
Abdurahim Joramurodov's user avatar
0 votes
1 answer
394 views

I am working on a project where I want to send all the reminders due in 3 days from now, but I am facing a problem. I have an error code 400 while sending the message on Telegram (for which I am using ...
Pranay Domal's user avatar
0 votes
0 answers
70 views

According to the FAQ: Bots talking to each other could potentially get stuck in unwelcome loops. To avoid this, we decided that bots will not be able to see messages from other bots regardless of mode....
Tyler Durdun's user avatar
1 vote
0 answers
388 views

There was a problem, I am making a business bot on aiogram, but I can not understand how to implement a connection check, I saw the following system in one bot, the bot asks to add itself as a chat ...
SenArio's user avatar
  • 29
-1 votes
1 answer
102 views

I'm using Telethon to log into Telegram accounts and save their sessions. However, when I try to log in with accounts from Myanmar or other sensitive countries, the accounts get instantly deleted ...
amir ali's user avatar
0 votes
0 answers
73 views

I'm trying to detect when I react to a message using Telethon. I tried using UpdateMessageReactions inside events.Raw, but it only triggers when someone else reacts to my messages — and only if I've ...
Reza Firoozi's user avatar
1 vote
1 answer
57 views

I'm writing a bot on Rust via teloxide + tokio. I have this run method (called from main) pub async fn run() { dotenv::dotenv().ok(); pretty_env_logger::init(); log::info!("Starting ...
Skyman2413's user avatar
0 votes
0 answers
49 views

I'm making telegram bot using Telethon and I want bot to request users's name (not username or first_name; it's like nickname which user can make by himself). And then bot whill use this name. For ...
Лиза Goodbye's user avatar
0 votes
0 answers
46 views

I’m building a Telegram bot in Python that scrapes points of interest (POIs) from Google Maps using Selenium. The overall flow works, but as soon as I try to scroll through and click on the .hfpxzc ...
Vazgen Hakobjanyan's user avatar
0 votes
0 answers
223 views

I have been trying to fetch the thread id from telegram using pyrogram so far I have been successful with fetching the chat ID itself but there are errors when i try to fetch the thread id (I am using ...
Tian Hock Woo's user avatar
0 votes
0 answers
51 views

I am developing a highly loaded TG-bot. One of the functions is a scheduler with sending a message at a specified time. At the moment I have the following problem: I want to make it so that tasks have ...
KroKatun's user avatar
0 votes
2 answers
394 views

I’m building a Telegram bot using node-telegram-bot-api in Node.js to send transaction notifications on the Solana blockchain. Each transaction message includes a Contract Address (CA), and I want the ...
Martin Wærøe's user avatar
-5 votes
1 answer
103 views

I am working on a bot that echoes the latest YT video title of a specific Youtube Channel to its users. However, it will only echo the video title only if it contains at least one of the user's ...
UnstoppableWil's user avatar
-1 votes
1 answer
115 views

I’m making a Telegram bot using Python and the telebot (pyTelegramBotAPI) library. I created a basic telegram bot for practice, and I want bot to say “Sorry, I don’t understand” when a user sends a ...
ВЕКТС's user avatar
1 vote
1 answer
278 views

I'm developing a Python application (using PySide6 for the GUI) that interacts with users via Telegram using python-telegram-bot version 13.7. The application runs automated workflows that can take ...
Kingston's user avatar
0 votes
0 answers
76 views

import os from flask import Flask from threading import Thread from telegram import Update from telegram.ext import ( ApplicationBuilder, CommandHandler, ContextTypes, ) import ...
MD Omár's user avatar
0 votes
0 answers
131 views

There is a task to create a bot for anonymous communication (you can't go to the profile of a chat participant). I studied the materials, from them it follows that opening a chat of participants is ...
user1378498's user avatar
0 votes
0 answers
65 views

I try to create a Forum Topic in a Telegram Super Group using the Telegram API. To do this, I'm using Make as my integration platform. However, I keep getting the same error: [400] Bad Request: title ...
jorenwouters's user avatar
0 votes
1 answer
44 views

So here's the decorator and the function I use: #telebot module imported, and another function gets users input and calls the check function with: my_bot.register_next_step_handler(message, check)#...
user30113406's user avatar
0 votes
1 answer
516 views

I'm developing a telegram bot on aiogram and faced a problem. I need to highlight the text bold italicized in the MD V1. How do I do it? I tried different formats: triple underline, triple asterisks, ...
AsfhtgkDavid's user avatar
0 votes
0 answers
72 views

Please help me with my problem. I have telegram bot on aiorgma 3.0 (python). It send message as business reports (text and table or chart photo) to chat users by apscheduler cron. Everyday on fix time ...
Георгий Третий's user avatar
0 votes
0 answers
140 views

I'm using a TelegramPost component to embed Telegram posts inside a Telegram Mini App. Here’s the code: const TelegramPost = ({ link }: { link: string }) => { const path = link.replace("...
plaaarrr's user avatar
0 votes
0 answers
51 views

I am developing a React TypeScript app that must implement authorization and authentication through Telegram. I wrote some code, to implement logic for it, but then, I realized that I needed to have a ...
Данило Гелей's user avatar
1 vote
0 answers
51 views

I'm developing a Telegram bot using core PHP, and I'm encountering an issue where the bot's /kill command runs indefinitely due to slow responses from an external API.Its take 25sec for two times loop....
Kamal Tech's user avatar
1 vote
1 answer
164 views

I have multiple bots that utilize Python Telegram Bot module. Each bot has code like: from telegram.ext import Updater, CommandHandler def start(update, context): update.message.reply_text("...
Bijan's user avatar
  • 8,826
0 votes
0 answers
105 views

I'm currently using grammY to create a telegram bot. I'm able to create a poll using the below code. The poll closes when at pollCloseDate. I want to send a message when the poll closes. The message ...
Daniel Chua's user avatar
0 votes
0 answers
35 views

@dp.message(WriteAppeal.message) async def wrote(message: Message, state: FSMContext): await bot.forward_message(chat_id=CHANNEL_ID, from_chat_id=message.chat.id, message_id=message.message_id) ...
Ok Google's user avatar
0 votes
0 answers
84 views

I’ve already set up my Telegram bot webhook in a WordPress site. When I check it using getWebhookInfo, I get this response: {"ok":true,"result":{"url":"https://...
Denny's user avatar
  • 309
0 votes
2 answers
153 views

I have a game in development for Telegram, using Unity3D, and I want to integrate IAP (Telegram Stars) into the game, The flow is as following: user click on in-game item the game call Telegram API ...
Tom Kazansky's user avatar

1
2 3 4 5
102