Telegram 机器人意外结束

Telegram bot ends unexpectedly

尝试制作我的第一个电报机器人,在所有示例和说明中,它看起来非常简单且易于重复。但是,我的机器人根本不起作用。首先,我来自俄罗斯,telegram api 被屏蔽了,所以我需要使用代理。从 https://www.socks-proxy.net/ 拿了一个。从 BotFather 那里得到令牌。现在当我 运行 我的脚本 telegraf.js:

const Telegraf = require('telegraf');
const SocksAgent = require('socks5-https-client/lib/Agent');
const socksAgent = new SocksAgent({
   socksHost: '103.206.97.70',
   socksPort: 4145,
});
const bot = new Telegraf(MY_TOKEN, {
telegram: {
    agent: socksAgent,
}
});
bot.hears('hi', ctx => {
   return ctx.reply('Hey!');
});
bot.startPolling();

没有任何反应,程序已完成

我知道问题出在我的代理配置中,但不明白到底出了什么问题。

问题出在代理中。我用 https-proxy-agent 而不是 socks5-https-client

import Telegraf from 'telegraf';
import config from 'config';
import HttpsProxyAgent from 'https-proxy-agent';

const TOKEN = config.get('token');
const proxy = config.get('proxy');

const bot = new Telegraf(TOKEN, {
    telegram: {
        agent: new HttpsProxyAgent({
            host: proxy.host,
            port: proxy.port
        })
    },
});

bot.hears('hi', ctx => {
    return ctx.reply('Hey!');
});
bot.startPolling();