我如何检查网站显示的是假?

问题描述 投票:0回答:1

JavaScript是否可以检查网站是对还是错?它实际上是一个空白页,根据URL(代码会根据某些内容对其进行更改),它只是说“ true”或false。它还说在检查元素中的源位。

这里是网站:https://api.roblox.com/ownership/hasasset?userId=130948426&assetId=4672521661

        if (username){
    roblox.getIdFromUsername(username).then(id => {
      var tokenID = `https://api.roblox.com/ownership/hasasset?userId=${id}&assetId=4672521661`

      message.channel.send(new Discord.RichEmbed().setTitle("Checking Purchases..").setDescription(`${tokenID} Hold Tight! We are just checking if you purchased a class!`).setFooter("Getroles").setColor("#ff4757")).then(() => {
        if(!(tokenID() === true)){
message.channel.send('You have bought it!');
}

用户名已定义。因此,当我执行命令时,它只会发送嵌入内容,而不会发送其他任何内容。我在这点上很固执]

javascript discord.js roblox
1个回答
0
投票

使用axios获取网页。

axios.get(tokenID).then(({data}) => {
   console.log(data) // debug
   const bought = data === 'true'
   // ...send message to user
})
© www.soinside.com 2019 - 2024. All rights reserved.