rockneurotiko / ex_gram

Telegram Bot API low level API and framework
183 stars 26 forks source link

Allow configuring polling and webhook #141

Closed rockneurotiko closed 6 months ago

rockneurotiko commented 6 months ago

Fixes #139

Added optional configuration for polling updates, in two different ways:

children = [
  # ...
  {MyBot, [method: {:polling, allowed_updates: ["message", "edited_message"]}, token: "TOKEN"]}
]
config :ex_gram, :polling, allowed_updates: ["message", "edited_message"]