javascript 我正在尝试让我的discord webhook用按钮发送消息

ovfsdjhp  于 2023-01-24  发布在  Java
关注(0)|答案(1)|浏览(163)

这就是我的问题。
我试图通过一个不协调的webhook按钮发送消息,但他们不显示或有时只是给予一个错误代码。
错误代码基本上是说我的JSON stringicicator因为syntrax错误而不起作用,这很奇怪,因为如果我发送一条没有任何按钮组件的消息,它确实没有问题。
下面是我的代码:

const request = new XMLHttpRequest();
request.open("POST", "/* the url of the bot */");

request.setRequestHeader('Content-type', 'application/json');

const params = {
  "embeds": [
    {
      "title": "test",
      "description": "test",
      "color": 65474
    }
  ],
  "components": [
    {
      "type": 1,
      "components": [
        {
          "type": 2,
          "style": 5,
          "label": "kaas",
          "url": "/* url website */"
        }
      ]
    }
  ]

request.send(JSON.stringify(params));

相关问题