Liking cljdoc? Tell your friends :D
Clojure only.

telegrambot-lib.updates.protocol

Getting updates - protocol definitions.

Getting updates - protocol definitions.
- <https://core.telegram.org/bots/api#getupdates>
raw docstring

Updatescljprotocol

Getting bot message updates.

Getting bot message updates.

delete-webhookclj

(delete-webhook this)
(delete-webhook this content)

Use this method to remove webhook integration if you decide to switch back to getUpdates. Returns True on success.

Use this method to remove webhook integration if you decide to
switch back to getUpdates.
Returns True on success.

get-updatesclj

(get-updates this)
(get-updates this content)

Use this method to receive incoming updates using long polling. An Array of Update objects is returned.

Use this method to receive incoming updates using long polling.
An Array of Update objects is returned.

get-webhook-infoclj

(get-webhook-info this)

Use this method to get current webhook status. On success, returns a WebhookInfo object. If the bot is using getUpdates, will return an object with the url field empty.

Use this method to get current webhook status.
On success, returns a WebhookInfo object.
If the bot is using getUpdates, will return an object with the
url field empty.

set-webhookclj

(set-webhook this url)
(set-webhook this url & optional)

Use this method to specify a url and receive incoming updates via an outgoing webhook. Whenever there is an update for the bot, we will send an HTTPS POST request to the specified url, containing a JSON-serialized Update. In case of an unsuccessful request, we will give up after a reasonable amount of attempts. Returns True on success.

Use this method to specify a url and receive incoming updates via
an outgoing webhook. Whenever there is an update for the bot, we
will send an HTTPS POST request to the specified url, containing
a JSON-serialized Update. In case of an unsuccessful request, we
will give up after a reasonable amount of attempts.
Returns True on success.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close