Commit 63041adb authored by Sergey Antonovich's avatar Sergey Antonovich 🇯🇵

Update Телеграм_Бот__Synergy__-_Установка_на_Linux.md

parent 5c7d3d7f
...@@ -54,6 +54,14 @@ nano package.json ...@@ -54,6 +54,14 @@ nano package.json
```bash ```bash
npm i node-telegram-bot-api nodemon najax crypto fs npm i node-telegram-bot-api nodemon najax crypto fs
``` ```
* Если по каким либо причинам возникли ошибки установки библиотек, попробуйте установить по очереди
```bash
npm i node-telegram-bot-api
npm i nodemon
npm i najax
npm i crypto
npm i fs
```
* Запускаем наш бот * Запускаем наш бот
```bash ```bash
npm run start npm run start
...@@ -68,13 +76,18 @@ npm run start ...@@ -68,13 +76,18 @@ npm run start
``` ```
* Если это так то можно начать писать скрипт в файле `bot.js`. Добавьте код ниже чтобы начать работу с Телеграм Ботом. * Если это так то можно начать писать скрипт в файле `bot.js`. Добавьте код ниже чтобы начать работу с Телеграм Ботом.
```javascript ```javascript
const TBOT = require('node-telegram-bot-api'); const ACCESS_TOKEN = 'Токен вашего телеграм бота';
const bot = new TBOT(ACCESS_TOKEN,{polling: true}); const CONTAINER_HOST_NAME = 'http://имя_хоста.arta.pro/Synergy/';
const CONTAINER_HOST_NAME = 'http://site.arta.pro/Synergy/';
const CONTAINER_LOGIN = '1'; const CONTAINER_LOGIN = '1';
const CONTAINER_PASSWORD = '1'; const CONTAINER_PASSWORD = '1';
const TBOT = require('node-telegram-bot-api');
const ajax = require('najax');
const crypto = require('crypto');
const fs = require('fs');
const bot = new TBOT(ACCESS_TOKEN,{polling: true});
function api(){ function api(){
var _m = typeof arguments[0] === 'string' ? arguments[0] : typeof arguments[1] === 'string' ? arguments[1] : typeof arguments[2] === 'string' ? arguments[2] : ''; var _m = typeof arguments[0] === 'string' ? arguments[0] : typeof arguments[1] === 'string' ? arguments[1] : typeof arguments[2] === 'string' ? arguments[2] : '';
var _o = typeof arguments[0] === 'object' ? arguments[0] : typeof arguments[1] === 'object' ? arguments[1] : typeof arguments[2] === 'object' ? arguments[2] : {}; var _o = typeof arguments[0] === 'object' ? arguments[0] : typeof arguments[1] === 'object' ? arguments[1] : typeof arguments[2] === 'object' ? arguments[2] : {};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment