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
@@ -70,16 +71,20 @@ Emits `message` when a message arrives.
70
71
| token | <code>String</code> || Bot Token |
71
72
|[options]| <code>Object</code> |||
72
73
|[options.polling]| <code>Boolean</code> | <code>Object</code> | <code>false</code> | Set true to enable polling or set options. If a WebHook has been set, it will be deleted automatically. |
73
-
|[options.polling.timeout]| <code>String</code> | <code>Number</code> | <code>10</code> | Timeout in seconds for long polling |
74
+
|[options.polling.timeout]| <code>String</code> | <code>Number</code> | <code>10</code> |*Deprecated. Use `options.polling.params` instead*. Timeout in seconds for long polling.|
74
75
|[options.polling.interval]| <code>String</code> | <code>Number</code> | <code>300</code> | Interval between requests in miliseconds |
|[options.polling.params]| <code>Object</code> || Parameters to be used in polling API requests. See https://core.telegram.org/bots/api#getupdates for more information. |
78
+
|[options.polling.params.timeout]| <code>Number</code> | <code>10</code> | Timeout in seconds for long polling. |
76
79
|[options.webHook]| <code>Boolean</code> | <code>Object</code> | <code>false</code> | Set true to enable WebHook or set options |
80
+
|[options.webHook.host]| <code>String</code> | <code>0.0.0.0</code> | Host to bind to |
77
81
|[options.webHook.port]| <code>Number</code> | <code>8443</code> | Port to bind to |
78
82
|[options.webHook.key]| <code>String</code> || Path to file with PEM private key for webHook server. The file is read **synchronously**! |
79
83
|[options.webHook.cert]| <code>String</code> || Path to file with PEM certificate (public) for webHook server. The file is read **synchronously**! |
80
84
|[options.webHook.pfx]| <code>String</code> || Path to file with PFX private key and certificate chain for webHook server. The file is read **synchronously**! |
81
85
|[options.webHook.autoOpen]| <code>Boolean</code> | <code>true</code> | Open webHook immediately |
82
86
|[options.webHook.https]| <code>Object</code> || Options to be passed to `https.createServer()`. Note that `options.webHook.key`, `options.webHook.cert` and `options.webHook.pfx`, if provided, will be used to override `key`, `cert` and `pfx` in this object, respectively. See https://nodejs.org/api/https.html#https_https_createserver_options_requestlistener for more information. |
87
+
|[options.webHook.healthEndpoint]| <code>String</code> | <code>/healthz</code> | An endpoint for health checks that always responds with 200 OK |
83
88
|[options.onlyFirstMatch]| <code>Boolean</code> | <code>false</code> | Set to true to stop after first match. Otherwise, all regexps are executed |
84
89
|[options.request]| <code>Object</code> || Options which will be added for all requests to telegram api. See https://github.com/request/request#requestoptions-callback for more information. |
85
90
|[options.baseApiUrl]| <code>String</code> | <code>https://api.telegram.org</code> | API Base URl; useful for proxying and testing |
@@ -592,16 +597,31 @@ Register a RegExp to test against an incomming text message.
0 commit comments