Merge pull request #21 from eefret/master

closes #17 adding response to SetWebhook Method
bot-api-6.1
Syfaro 2015-09-04 11:21:22 -05:00
commit 792234b42e
1 changed files with 2 additions and 4 deletions

View File

@ -880,13 +880,11 @@ func (bot *BotAPI) GetUpdates(config UpdateConfig) ([]Update, error) {
// If this is set, GetUpdates will not get any data!
//
// Requires Url OR to set Clear to true.
func (bot *BotAPI) SetWebhook(config WebhookConfig) error {
func (bot *BotAPI) SetWebhook(config WebhookConfig) (APIResponse, error){
v := url.Values{}
if !config.Clear {
v.Add("url", config.URL.String())
}
_, err := bot.MakeRequest("setWebhook", v)
return err
return bot.MakeRequest("setWebhook", v)
}