0

giphy 插件正在 Slack 频道中使用,嵌套机器人回复是否有可能通过类似 msg.reply('/giphy' + text, done); 之类的东西调用 giphy 搜索;

4

1 回答 1

1

我发现他们在这里是不允许的。我通过在我的 slackbot 文件中使用superagent npm for ajaxgiphy api来解决问题,如下所示:

  var url = 'https://api.giphy.com/v1/gifs/search?q=' + 'searchString' + '&api_key=dc6zaTOxFJmzC&rating=r';
  request.get(url).end( function(err, res) {
    // console.log(res.body.data)
    bot.reply(message, 'giphy for you ' +  searchString + giph);
});

希望这可以帮助

于 2016-04-26T17:22:24.420 回答