这就是我的问题。
我试图通过一个不协调的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));
1条答案
按热度按时间mklgxw1f1#
缺少用于关闭
params
对象的}
。