Добавил еще ведущие нули к миллисекундам, если кому-то еще когда-то этот код понадобится
log = function (text, color, define){ var id, time, thread, logHtml, textLog; define = (typeof define == 'string') ? define.split(/[\s,.|:;]+/g) : define; if(typeof define === 'object' && define !== null){ if(Array.isArray(define)){ id = define.indexOf('id') > -1; time = define.indexOf('time') > -1; thread = define.indexOf('thread') > -1; } else{ id = define.id == true; time = define.time == true; thread = define.thread == true; } } else id = time = thread = true; id = id ? '<a href="action://action' + ScriptWorker.GetCurrentAction() + '" style="color:gray;">[' + ScriptWorker.GetCurrentAction() + ']</a>' : ''; time = time ? ' ' + getTime() : ''; thread = thread ? ' Поток №' + thread_number() : ''; logHtml = (id || time || thread) ? id + '<span style="color: white">' + time + thread + ' : </span>' : ''; logHtml += '<span style="color:' + (color ? color : 'white') + '">' + text + '</span>'; textLog = '[' + ScriptWorker.GetCurrentAction() + ']' + time + thread + ' : ' + text function getTime(){ var checkTime = function(i){ return (i < 10) ? "0" + i : i; }; var checkMilliSeconds = function(ms){ if (ms < 10) { return "00" + ms; } else if (ms < 100) { return "0" + ms; } else { return ms; } }; var d = new Date(); var hh = checkTime(d.getHours()); var mm = checkTime(d.getMinutes()); var ss = checkTime(d.getSeconds()); var ms = checkMilliSeconds(d.getMilliseconds()); return '[' + hh + ':' + mm + ':' + ss + '.' + ms + ']'; }; Logger.WriteHtml(logHtml, textLog); }Как установить прокси для telegraf в node.js
-
@romeoinlove Прокси устанавливается через прокси агент. Тоесть агенту запроса назначается прокси агент. Если из коробки это нет, то надо смотреть модуль и искать место где формируются запросы и там его воткнуть.
-
const Telegraf = require('telegraf'); const SocksAgent = require('socks5-https-client/lib/Agent'); const socksAgent = new SocksAgent({ socksHost: `127.0.0.1`, socksPort: `9000`, }); const app = new Telegraf('756191146:AAF5-25t0Txwdhmwr8IZjW4a8Z1BaDnBYtc', { telegram: { agent: socksAgent } }); bot.start((ctx) => ctx.reply('Welcome')) bot.help((ctx) => ctx.reply('Send me a sticker')) bot.on('sticker', (ctx) => ctx.reply('👍')) bot.hears('hi', (ctx) => ctx.reply('Hey there')) bot.launch() -
и вот так пробывал:
const Telegraf = require('telegraf') const HttpsProxyAgent = require('https-proxy-agent') const bot = new Telegraf('756191146:AAF5-25t0Txwdhmwr8IZjW4a8Z1BaDnBYtc', { telegram: { agent: new HttpsProxyAgent('127.0.0.1:9000') } }) bot.start((ctx) => ctx.reply('Welcome')) bot.help((ctx) => ctx.reply('Send me a sticker')) bot.on('sticker', (ctx) => ctx.reply('👍')) bot.hears('hi', (ctx) => ctx.reply('Hey there')) bot.launch() -
@romeoinlove
Вот пример, все работает. Только тестил в чистой nodeconst Telegraf = require('telegraf') const HttpsProxyAgent = require('https-proxy-agent') const bot = new Telegraf('token', { telegram: { agent: new HttpsProxyAgent('http://login:pass@ip:port') } }) bot.start((ctx) => ctx.reply('Welcome')) bot.help((ctx) => ctx.reply('Send me a sticker')) bot.on('sticker', (ctx) => ctx.reply('👍')) bot.hears('hi', (ctx) => ctx.reply('Hey there')) bot.launch() -
@romeoinlove Очевидно что npm, БАС никакого отношения к node.js не имеет.
-
@usertrue 0_1548349155326_telegraf.xml
А вот в Bas почему то не работает(( -
запускаю через проксю tor 0_1548349377648_Tor.rar
-
@romeoinlove said in Как установить прокси для telegraf в node.js:
запускаю через проксю tor 0_1548349377648_Tor.rar
Сейчас не могу потестить. Но для начала попробуйте через обычный прокси. А tor же вроде socks, если так то в агенте надо http на socks заменить да и сам агент тоже например на из первого варианта socks5-https-client/lib/Agent
-
на платной проксе заработало! а на advor так и не хочет!(