Skip to content

Instantly share code, notes, and snippets.

@eternnoir
Last active August 30, 2015 13:28
Show Gist options
  • Save eternnoir/8ddbf3172c1c6ffe0ac8 to your computer and use it in GitHub Desktop.
Save eternnoir/8ddbf3172c1c6ffe0ac8 to your computer and use it in GitHub Desktop.
webhook example.
def webhook():
json_str = request.josn
json_obj = json.loads(json_str)
new_message = types.Message.de_json(json_obj['message'])
telebot.process_new_messages([new_messages]) # process_new_messages need message array
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment