我应该使用什么协议以及它的文档是什么?

What protocol should I use and what are the docs for it?

所以我正在尝试构建一个 Discord 机器人。这些类型的线程在 Whosebug 上往往会被否决,所以我希望这不会发生在我身上。

这个特殊功能是作为我的仪表板问题的临时解决方案。由于 glitch.com's 托管的性质,它应该在 5 分钟的 HTTP 不活动后进入睡眠状态。我已经通过添加一个每 4 分钟 ping URL 的脚本解决了这个问题,但这导致了另一个问题。我认为正在发生的事情是因为该脚本和 bot 脚本一直 运行,并且从技术上讲从来没有 'finish',它永远不会让任何传入连接实际加载网页。因此,我对该问题的解决方案是创建 另一个 故障项目作为仪表板网站,并从机器人项目传输信息。当然,我需要创建更多的脚本,通过一些互联网协议相互通信。机器人记录的信息全部记录在使用 node-json-db npm 库的私有 JSON 数据库中。

我的问题是:我不知道哪种协议最适合这种事情。即使我确实知道,我也必须通过文档挖掘我正在寻找的信息。

我的问题是:我应该使用什么协议,为此我需要阅读哪些文档?

我在这里包含了一些代码片段:

机器人的服务器代码(我将在其中添加用于与仪表板通信的脚本):

// server.js
// where your node app starts

// init project
const express = require('express');
const app = express();
const JsonDB = require('node-json-db');
const db = new JsonDB("myDataBase", true, true);

// we've started you off with Express, 
// but feel free to use whatever libs or frameworks you'd like through `package.json`.

// http://expressjs.com/en/starter/static-files.html
app.use(express.static('public'));

// http://expressjs.com/en/starter/basic-routing.html
app.get('/', function(request, response) {
  response.sendFile(__dirname + '/views/index.html');
});

app.post('/login/c3RvcCBoYWNrZXIh', function(request, response) {
  var servername = request.param('servername');
  var password = request.param('password');
  if (db.getData("/" + servername + "/password") === password) {
response.json(db.getData("/" + servername));
  } else {
response.json(null);
  }
});
// listen for requests :)
const listener = app.listen(process.env.PORT, function() {
  console.log('Your app is listening on port ' + listener.address().port);
});

// to keep the bot alive, since glitch puts projects to sleep after 5 mins of inactivity.
const http = require('http');
setInterval(() => {
  http.get(`http://${process.env.PROJECT_DOMAIN}.glitch.me/`);
}, 270000);

控制面板网站上的server.js:

// server.js
// where your node app starts

// init project
const express = require('express');
const app = express();
const request = require('request');

// we've started you off with Express, 
// but feel free to use whatever libs or frameworks you'd like through `package.json`.

// http://expressjs.com/en/starter/static-files.html
app.use(express.static('public'));

// http://expressjs.com/en/starter/basic-routing.html
app.get('/', function(request, response) {
  response.sendFile(__dirname + '/views/index.html');
});



app.post('/login', function(request, response) {
  var servername = request.param('servername');
  var password = request.param('password');
  if ("thereisnopassword" === password) {
    response.sendFile(__dirname + '/dashboard/index.html');
  } else {
    response.sendFile(__dirname + '/views/wronginfo.html');
  }
});

// listen for requests :)
const listener = app.listen(process.env.PORT, function() {
  console.log('Your app is listening on port ' + listener.address().port);
});

我也有这个问题,但是通过简单地在 http 循环之前放置启动 express 服务器的代码就解决了。

// Require packages
const http = require('http');
const express = require('express');
const app = express();

// Express
app.get("/", (request, response) => {
  response.sendStatus(200);
});
app.listen(process.env.PORT);

// Interval
setInterval(() => {
  http.get(`http://${process.env.PROJECT_DOMAIN}.glitch.me/`);
}, 240000);

// Bot code
const Discord = require('discord.js');
const client = new Discord.Client();