无论如何我可以制作一个 Discord js Bot,当 instagram 中的特定帐户发帖时发送嵌入

Is there anyway I can make a Discord js Bot that send an embed when a specific account in instagram posts

我只是希望它在 Instagram 上的帐户 post 时发送嵌入,甚至只是 post 的 link。我尝试了 IFTTT 网站,但他们只允许您为自己的 Instagram 帐户执行此操作,我希望它为另一个 public 帐户执行上述操作。然后。

我不认为为你编写整个项目的代码会有用,所以我可以给你一些建议: 对于 Instagram 抓取,我建议使用 Nightmare,一个高级浏览器自动化库。它易于使用且功能强大。
程序的开头应该是这样的:

const Discord = require('discord.js');
const client = new Discord.Client();
const Nightmare = require('nightmare')
const nightmare = Nightmare({ show: true })
const accountName = 'insertaccountnamehere'
Nightmare({ show: false })
      .goto(`https://www.instagram.com/${accountName}`)
      // your turn

您将更新一些保持最新 post 的变量,检查它是否更改,然后发送您想要的任何内容:嵌入、link,等等。