Send link on Telegram channel from Python without preview – Telegram API
I send a message on telegram channel using this method: telegramResult = requests.get('https://api.telegram.org/bot' + telegramApiKey + '/sendMessage', params={ 'chat_id': '@XXXXXX', 'text': 'hello world' + getShortLink }) The problem is that telegram view a preview of this short link. I don't…