所以,我试图制作一个让机器人发送 GIF 的代码,但我完全不知道机器人不出错的实际解决方案是什么。
目前使用 hello-express 在 Glitch 上托管我的机器人,并使用 Discord.js 来编写代码。
const GphApiClient = require("giphy-js-sdk-core");
var giphy = GphApiClient(process.env.GIPHYTOKEN);
client.on("message", async message => {
if (message.content.startsWith(`${prefix}gif`)) {
giphy.search("gifs", { q: "fail" })
.then(response => {
var totalResponses = response.data.length;
var responseIndex = Math.floor((Math.random() * 10) + 1) % totalResponses;
var responseFinal = response.data[responseIndex]
message.channel.send({
files: [responseFinal.images.fixed_height.url]
})
});
}
}
然后你去控制台日志告诉我一些有趣的事情:
TypeError: GphApiClient is not a function