Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
telegram-bot
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
community
telegram-bot
Commits
63041adb
Commit
63041adb
authored
Nov 12, 2018
by
Sergey Antonovich
🇯🇵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Телеграм_Бот__Synergy__-_Установка_на_Linux.md
parent
5c7d3d7f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
4 deletions
+17
-4
source/Телеграм_Бот__Synergy__-_Установка_на_Linux.md
source/Телеграм_Бот__Synergy__-_Установка_на_Linux.md
+17
-4
No files found.
source/Телеграм_Бот__Synergy__-_Установка_на_Linux.md
View file @
63041adb
...
@@ -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
]
:
{};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment