all repos — telegram-bot-api @ 3b466def718ef0685de17e626a0369450425d247

Golang bindings for the Telegram Bot API

fixed setting webhooks with a certificate
Syfaro syfaro@foxpaw.in
Mon, 07 Sep 2015 12:47:31 -0500
commit

3b466def718ef0685de17e626a0369450425d247

parent

9efd3005165e4c26a376179083da0328369ace50

2 files changed, 2 insertions(+), 1 deletions(-)

jump to
M helpers.gohelpers.go

@@ -238,7 +238,7 @@ Clear: false,

} } -// NewWebhookWithCert creates a new webhook with a selfsigned certificate. +// NewWebhookWithCert creates a new webhook with a certificate. // // link is the url you wish to get webhooks, // file contains a string to a file, or a FileReader or FileBytes.
M methods.gomethods.go

@@ -985,6 +985,7 @@ return bot.MakeRequest("setWebhook", v)

} params := make(map[string]string) + params["url"] = config.URL.String() resp, err := bot.UploadFile("setWebhook", params, "certificate", config.Certificate) if err != nil {