【问题标题】:Simple Webhook code 'shardCount' on string error?字符串错误上的简单 Webhook 代码“shardCount”?
【发布时间】:2021-11-11 19:50:14
【问题描述】:

我尝试制作并开始学习使用 API 编写出价但我遇到了这个非常烦人的错误...我的代码是

    const Discord = require('discord.js')
    const webhookID = '888151030620106792'; 
    const webhookToken = 'token-here';
    
    
    const webhook = new Discord.WebhookClient(webhookID, webhookToken);



    webhook.send('I am here')

如果是,我会出错:

PS C:\Users\jonat\Desktop\Api Dev\Discord and Rest Api> node webhooks.js
C:\Users\jonat\Desktop\Api Dev\Discord and Rest Api\node_modules\discord.js\src\util\Util.js:336
        given[key] = def[key];
                   ^

TypeError: Cannot create property 'shardCount' on string 'zFutoKYe-OfZrfPdh0UE5yCk2wMOe-B84Xcs_Af6a76DXTx6bt3WB48qZwH-KvUriqtI'

    at Function.mergeDefault (C:\Users\jonat\Desktop\Api Dev\Discord and Rest Api\node_modules\discord.js\src\util\Util.js:336:20)
    at new BaseClient (C:\Users\jonat\Desktop\Api Dev\Discord and Rest Api\node_modules\discord.js\src\client\BaseClient.js:20:25)
    at new WebhookClient (C:\Users\jonat\Desktop\Api Dev\Discord and Rest Api\node_modules\discord.js\src\client\WebhookClient.js:26:5)
    at Object.<anonymous> (C:\Users\jonat\Desktop\Api Dev\Discord and Rest Api\webhooks.js:9:25)
    at Module._compile (node:internal/modules/cjs/loader:1101:14)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
    at Module.load (node:internal/modules/cjs/loader:981:32)
    at Function.Module._load (node:internal/modules/cjs/loader:822:12)
    at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:79:12)     
    at node:internal/main/run_main_module:17:47

执行此操作时出现相同的错误:

const Discord = require('discord.js');

const webhook = new WebhookClient('888151030620106792', 'zFutoKYe-OfZrfPdh0UE5yCk2wMOe-B84Xcs_Af6a76DXTx6bt3WB48qZwH-KvUriqtI')

  
webhook.send('Hello World;)')`

【问题讨论】:

    标签: javascript node.js discord.js


    【解决方案1】:
    const discord = require('discord.js');
    const data = {
        id: 'idhere',
        token: 'tokenhere'
    }
    const webhook = new discord.WebhookClient(data);
    webhook.send('hello');
    

    我今天也遇到了这个问题,但是通过将 webhook 数据作为对象发送对我有用,希望这对我有帮助 ?

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-11-19
      • 2011-12-29
      • 1970-01-01
      • 2014-08-16
      • 2011-09-21
      • 1970-01-01
      相关资源
      最近更新 更多