You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with urlopen("https://api.telegram.org/bot{token}/getUpdates?offset={offset}".format(token = telegram_token, offset = offset)) as response: #Do a get call to the getUpdates api from Telegram
json_response = json.load(response)
return json_response #return the json
def forwardMessage(telegram_token, new_chat_id, from_chat_id, message_id): #Forward messages to specified Telegram groups