我需要我的 Discord Bot 处理外部网站的 GET 和 POST 请求

I need my Discord Bot handling GET and POST requests for an external website

我想让我的 Discord Bot 处理 GET 和 POST 请求,以使用仪表板控制我的 Bot 的某些功能。知道我的机器人与我未来的仪表板托管在不同的服务器上。

有人谈到设置 RESTFul API 但经过一些研究后,我真的不知道该怎么做,也不知道它是否真的对我有帮助。我不能说其他方法是否可行。 我正在使用 node.js 和库 discord.js

您可以使用 express 为 GET 和 POST
做不同的事情 当浏览器使用 GET 时,对 Web 服务器请求使用 POST。

注意:机器人会运行为网络服务器提供服务

var express = require('express');
var app = express();

var data = '{"example":{"online":true,"status":"200"}}';

app.get('/', function(req, res) {
    res.send('<html><head><script>window.location.href = \'https://google.com/\'</script></head><body>You shouldn\'t be here! <a href=\'https://google.com\'>Exit</a></body></html>');
    /** Redirect the browser to google with window.location.href 
     *  Change this to your site */
});

app.post('/', function(req, res) {
    /** You could add some auth code here but
     *  if your sending it all to the client there isn't much of a difference 
     *  because people could read it from the website. */
    res.type('json');
    res.json(data);
    /* Webserver --> Bot */
    res.end();
});

app.listen(8080);
console.log('API Online');

您将不得不使用setInterval(() => {}, 15000);来更新数据变量,并且您需要在客户端解析数据。
XMLHttpRequest 应该足够好