telegram Questions
4
Solved
I use let's encrypt free SSL (my host provider support it by default),
I checked my site at sslshopper.com (the only warning was: The certificate is not trusted in all web browsers. You may need to...
8
I need send an image url to telegram without display image url and hidden url. I see a telegram bot and it's do it very well and send long message with image I'm attach this bot result image see it...
Pringle asked 19/9, 2016 at 22:39
9
I want use Telegram API in C# for send a simple message to a number. I found some lib's on GitHub but I am not able to use them.
Can anyone give a simple code ? Can I simply make HTTP calls ?
3
I have been trying since the morning but earlier there were errors, so i had the direction but now there is no error and even not a warning too..
How code looks like :
import requests
def send_msg...
Valenciavalenciennes asked 26/7, 2020 at 16:52
4
Hello I'm creating a bot in telegram. I send a http request:
https://api.telegram.org/bot(mytoken)/setWebhook?url=https://mywebpagetorespondtobot
and I receive this:
{"ok":true,"result":true,"de...
Wimble asked 28/4, 2016 at 4:46
2
I am using "python-telegram-bot" library and have been looking at various examples over the internet.
I have noticed there are two ways to reply in a conversation:
the first:
''' context....
1
Solved
I'm trying to send an InlineKeyboardHandler every x second. for that purpose I used updater.job_queue.run_repeating but it acts weird.
The keyboard doesn't work unless I have another interaction wi...
Freefloating asked 29/8, 2021 at 14:22
2
Solved
I create a simple telegram bot:
import logging
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters
import os
PORT = int(os.environ.get('PORT', 8443))
# Enable logging
logging...
6
What I did:
I developed a Telegram bot using TelegrafJS framework. This bot allow the user to subscribe to a paid channel, this channel is privated.
So after that the payment is completed, the bo...
Glassware asked 2/2, 2020 at 15:38
6
Solved
I'm new to telethon and python. I have installed telethon in python3 and I want to get all members of a telegram channel or a group . I was searching a lot in the internet and found below code . An...
7
Solved
The sendPhoto command require an argument photo defined as InputFile or String.
The API doc tells:
Photo to send. You can either pass a file_id as String to resend a photo
that is already on the...
Capacitate asked 30/8, 2015 at 11:53
2
Solved
This is the error i get when i try to send a long markdown message which has a ton of formatted hyperlinks in it:
context.bot.send_message(chat_id=update.effective_chat.id, text=longmsg, parse_mode...
Blackfoot asked 13/8, 2021 at 7:3
2
Solved
I have the following code:
from prettytable import PrettyTable
myTable = PrettyTable(["Student Name", "Class", "Section", "Percentage"])
# Add rows
myTable...
Vaginismus asked 12/8, 2021 at 1:57
1
i'm trying to create a bot which can read/receive all messages in a specific channel and send them to me .
my problem here is that i can't find a way to access those messages in my bot
important th...
Donte asked 9/8, 2021 at 9:9
2
Solved
As far as I read the Telegram Bot API's docs, Telegram do not limit the calls to your webhook callback in any way.
I am creating a Telegram Bot that will be available only for groups and channels ...
Lichen asked 17/9, 2018 at 14:47
3
How can I get channel messages from telegram channels with TLSharp?
The following links haven't helped me:
How can I get messages from a Telegram channel with the Telegram API
How to obtain al...
Calcareous asked 12/5, 2016 at 14:26
4
Solved
I've been trying to add a bot to my Telegram group in Android Device but I am not able to do so. I tried @bot_name, /bot_name, but it doesn't work.
Is it possible to add a bot to the group or shoul...
Homogenous asked 20/5, 2016 at 4:45
2
How do I delete multiple telegram contacts / Refresh contacts to reflect only my current address book? My telegram has way too many old contacts that I deleted from phones years ago. How do I...
Courageous asked 17/1, 2017 at 12:56
3
I want to get a channel's members' count but I don't know which method should I use?
I am not admin in that channel, I just want to get the count number.
EDIT:I am using main telegram api, not te...
2
I need to format my text in telegram.
I try to use markdown language for the following text:
* Item
* Item
It prints the text as it is.
It is supposed to print bullets instead.
I am following t...
Vienna asked 22/5, 2020 at 14:24
3
Solved
There is TDlib which allows to work with Telegram Client API.
Documentation says that it's possible to use it with almost any language.
I can't imagine myself how I can use it with Node.js
Could...
2
Solved
I am writing a Telegram bot, to simplify the issue let's say you can ask the bot questions in a channel and it replies to you in private. When the bot receives the command it takes the chat_id of t...
Skive asked 22/4, 2018 at 12:9
1
Solved
I want to reuse existing session file (the phonenumber.session) file,
But I want to change it default path (working directory) to another directory, like '/data/se.session'
There is any option to d...
4
Solved
Im creating a bot to send message to multiple contact in Telegram.
user can share contact with bot. then i use getUpdates and obtain the phone number.
For using the sendMessage Method i need the c...
About asked 16/1, 2017 at 23:5
5
I would like to download the chat history (all messages) that were posted in a public group on Telegram. How can I do this with python?
I've found this method in the API https://core.telegram.org/...
© 2022 - 2024 — McMap. All rights reserved.