From 510e914a739cc6ec626d97ce813bd5db3b5dd486 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20Garc=C3=ADa?= Date: Tue, 8 Sep 2015 10:26:54 +0200 Subject: [PATCH] Self-signed certificates are allowed According to Telegram Bot API [recent changes](https://core.telegram.org/bots/api#recent-changes): ``` August 29, 2015 Added support for self-signed certificates: upload your certificate using the certificate parameter in the setWebhook method. ``` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df84307..daa592b 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Every time TelegramBot receives a message, it emits a `message`. Depending on w ## TelegramBot Both request method to obtain messages are implemented. To use standard polling, set `polling: true` -on `options`. Notice that [webHook](https://core.telegram.org/bots/api#setwebhook) will need a valid (not self signed) SSL certificate. +on `options`. Notice that [webHook](https://core.telegram.org/bots/api#setwebhook) will need a valid SSL certificate (self-signed certificates are allowed since August 29, 2015). Emits `message` when a message arrives. See: https://core.telegram.org/bots/api