gpt4 book ai didi

javascript - 使用不和谐库发送不显示链接的图像

转载 作者:行者123 更新时间:2023-11-29 23:24:57 26 4
gpt4 key购买 nike

我希望我的 discord 机器人发送图像(来自 url),但在聊天中发送的消息中隐藏该 url。为了发送消息,我使用了一个 switch 语句,该语句仅使用“!”之后的文字

            case 'happy':
bot.sendMessage({
to: channelID,
message: 'https://pictureexample.jpg'
});

如何在聊天中不显示链接的情况下发送消息?

最佳答案

正如 user4261590 所写,您可以使用嵌入来实现这一点。下面是一个可能对您有用的示例:

case 'happy':
const embed = {
"image": {
"url": "https://pictureexample.jpg"
}
};
bot.sendMessage({
to: channelID,
message: embed
});

关于javascript - 使用不和谐库发送不显示链接的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49622374/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com