Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김대선
/
Recruitment_Information_chatbot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
김대선
2021-06-05 09:37:20 +0000
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5f7dcfd37c46df78dbd9e7d24b8ee8a5fe8a217b
5f7dcfd3
1 parent
94dd13cd
채팅 예제 관련 pakage.json 의존성 추가, config 오류 수정
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
app.js
package-lock.json
package.json
app.js
View file @
5f7dcfd
var
express
=
require
(
'express'
);
const
request
=
require
(
'request'
);
const
TARGET_URL
=
'https://api.line.me/v2/bot/message/reply'
const
TOKEN
=
require
(
'config'
).
TOKEN
const
TOKEN
=
require
(
'
./
config'
).
TOKEN
const
fs
=
require
(
'fs'
);
const
path
=
require
(
'path'
);
const
HTTPS
=
require
(
'https'
);
const
domain
=
require
(
'config'
).
domain
const
domain
=
require
(
'
./
config'
).
domain
const
sslport
=
23023
;
const
bodyParser
=
require
(
'body-parser'
);
...
...
package-lock.json
View file @
5f7dcfd
This diff is collapsed. Click to expand it.
package.json
View file @
5f7dcfd
...
...
@@ -18,6 +18,8 @@
"express"
:
"^4.17.1"
,
"node-schedule"
:
"^2.0.0"
,
"puppeteer"
:
"^9.1.1"
,
"sanitize-html"
:
"^2.3.3"
"sanitize-html"
:
"^2.3.3"
,
"body-parser"
:
"^1.19.0"
,
"request"
:
"^2.88.2"
}
}
...
...
Please
register
or
login
to post a comment