skip to Main Content

Telegram Bot URL returns 404 – Telegram API

I am using Python for sending message to a telegram group, the URL returns 404. Below is the code: import requests from config import API, CHAT_ID # telegram url url = "https://api.telegram.org/bot{}".format(API) print(url) def send_mess(text): params = {'chat_id': CHAT_ID, 'text':…

VIEW QUESTION
Back To Top
Search