giphy插件正在Slack频道中使用,Nestor bot回复可能会通过msg.reply('/ giphy'+ text,done)之类的东西来调用giphy搜索;

最佳答案

我发现他们不允许here
我通过在我的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);
});


希望这可以帮助

09-28 05:56