我仍在尝试使用this guide通过网站授权我的Discord机器人,但我真的不了解如何获取访问令牌。
我的代码
const http = require('http');
const fs = require('fs');
const port = 53134;
http.createServer((req, res) => {
let responseCode = 404;
let content = '404 Error';
if (req.url === '/') {
responseCode = 200;
content = fs.readFileSync('../HTML/index.html');
}
res.writeHead(responseCode, {
'content-type': 'text/html;charset=utf-8',
});
res.write(content);
res.end();
})
.listen(port);
每次我运行此命令时,都会出现“ 404错误”,并且由于缺少访问令牌而感到类似
答案 0 :(得分:1)
错误404 =找不到 在此服务器上找不到请求的URL。
错误403 =禁止 您无权访问此资源。
因此,如果您缺少访问令牌,则错误将是403,而不是404。