如何使用 Discord.js 发布到 Discord Webhook(代码 400 错误请求)?
Posted
技术标签:
【中文标题】如何使用 Discord.js 发布到 Discord Webhook(代码 400 错误请求)?【英文标题】:How to Post to a Discord Webhook with Discord.js (code 400 Bad Request)? 【发布时间】:2019-10-30 11:25:00 【问题描述】:我正在尝试使用 Nodejs 访问不和谐 Webhook 以获取简单消息(目前)。
我在这里和其他地方看过几次尝试,但不太了解它们或能够自己复制它们。通过阅读docs 并在网上搜索,我发现node-fetch 在我看来原则上应该可以正常工作,虽然看起来更简单。
const fetch = require('node-fetch');
var webhook =
"id":"my webhook id",
"token":"my webhook token"
;
var URL = `https://discordapp.com/api/webhooks/$webhook.id/$webhook.token`;
fetch(URL,
"method":"POST",
"payload": JSON.stringify(
"content":"test"
)
)
.then(res=> console.log(res));
我得到的唯一输出是状态码为 400 的响应对象。我得到其他东西的唯一一次是当我删除该方法时,我得到的代码 200 并没有多大帮助...... 我的有效负载是否完全错误,还是我的 URL 或获取语法有误?
【问题讨论】:
【参考方案1】:您可以像这样使用 Discord.js 中内置的 WebhookClient
,而不是自己发出 POST 请求...
const id = '';
const token = '';
const webhook = new Discord.WebhookClient(id, token);
webhook.send('Hello world.')
.catch(console.error);
【讨论】:
第一次尝试就成功了。感谢您展示这一点,这样的原生解决方案是完美的!【参考方案2】:您的请求中有2个小错误导致错误400:
标头中没有 Content-Typepayload
属性必须替换为body
var URL = `https://discordapp.com/api/webhooks/$webhook.id/$webhook.token`;
fetch(URL,
"method":"POST",
"headers": "Content-Type": "application/json",
"body": JSON.stringify(
"content":"test"
)
)
.then(res=> console.log(res))
.catch(err => console.error(err));
【讨论】:
我收到一个错误“意外字符串”,您在标题对象后忘记了逗号。但即使有逗号,我仍然得到代码 400以上是关于如何使用 Discord.js 发布到 Discord Webhook(代码 400 错误请求)?的主要内容,如果未能解决你的问题,请参考以下文章
Discord.js 机器人的代码响应错误“TypeError:”
Node.js + Discord.js:无法读取未定义的属性“类”
**已解决** discord.js guildMemberAdd() 未向对象添加正确的值
如何使用 Discord.js 发布到 Discord Webhook(代码 400 错误请求)?