Api.prototype.sendStickerFromUrl = function (chatId, url, options) {
  return yarl.get(url, { buffer: true }).then(function (res) {
    return this.sendSticker(chatId, res.body, options);
  }.bind(this));
};