正如标题描述的那样,我最近刚刚开始使用WhatsApp-web.js开发一个WhatsApp机器人,但问题是我不擅长阅读文档,所以我的问题是:
有人知道如何使用像MyAnimeList Api或MYANIMENEWS API这样的API或任何其他API将动漫最新新闻发送到WhatsApp吗
我在下面尝试的代码:
client.on('message', async message => {
const content = message.body
if (content === "anime-news") {
const animeDb = await axios("https://cdn.animenewsnetwork.com/encyclopedia/api.xml?anime=id")
.then(res => res.data)
client.sendMessage(message.from, await MessageMedia.fromUrl('animeDb.url'))
});
1条答案
按热度按时间jucafojl1#
你可以试着用这种算法来解决你的问题