Toggle navigation
Toggle navigation
This project
Loading...
Sign in
윤성배
/
chatbot_for_PsychologicalTest
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Ubuntu
2020-12-07 17:57:21 +0000
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
413200b4bb5edcb68d5d5da7354197106afeb5a9
413200b4
1 parent
d54ab452
code upgrade
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
89 additions
and
26 deletions
README.md
app.js
README.md
View file @
413200b
...
...
@@ -2,7 +2,7 @@
-------------------------------
(이곳에 구동 화면 삽입)
커리어넷의 진로심리검사
프로그램을 쉽고 간단하게 접속
할 수 있게
<br>
커리어넷의 진로심리검사
중 직업가치관검사를 쉽고 간단하게
할 수 있게
<br>
LINE 챗봇을 통해 구현함
<br><br>
(이곳에 QR 이미지 삽입)
...
...
app.js
View file @
413200b
...
...
@@ -2,53 +2,116 @@ var express = require('express');
const
request
=
require
(
'request'
);
const
TARGET_URL
=
'https://api.line.me/v2/bot/message/reply'
const
TOKEN
=
'rqZYufny8jqziXvpdrovk6Ot5B3Ia8xm42g+jQecXtgL7M35KJVmS8Y5mIP/yETRyGJpKKEVmWkTQUQcHOfKL083D6SqgZIViOuQ8EQHRxzmJkgGHcfYLBeK7Nadc1kaqAd+3wzLATBryaIgBBAwSQdB04t89/1O/w1cDnyilFU='
const
Question_URL
=
'https://inspct.career.go.kr/openapi/test/questions?apikey=8f65744f11f9b7e8fc2b7c28617e9d09&q=6'
const
Result_URL
=
'https://inspct.career.go.kr/openapi/test/report?apikey=8f65744f11f9b7e8fc2b7c28617e9d09&qestnrSeq=6'
const
fs
=
require
(
'fs'
);
const
path
=
require
(
'path'
);
const
HTTPS
=
require
(
'https'
);
const
domain
=
"www.skdhkfkdy.tk"
const
sslport
=
23023
;
const
bodyParser
=
require
(
'body-parser'
);
var
app
=
express
();
app
.
use
(
bodyParser
.
json
());
app
.
post
(
'/hook'
,
function
(
req
,
res
)
{
var
eventObj
=
req
.
body
.
events
[
0
];
var
source
=
eventObj
.
source
;
var
message
=
eventObj
.
message
;
var
contents
;
// request log
console
.
log
(
'======================'
,
new
Date
()
,
'======================'
);
console
.
log
(
'[request]'
,
req
.
body
);
console
.
log
(
'[request source] '
,
eventObj
.
source
);
console
.
log
(
'[request message]'
,
eventObj
.
message
);
request
.
post
(
{
url
:
TARGET_URL
,
headers
:
{
'Authorization'
:
`Bearer
${
TOKEN
}
`
},
json
:
{
"replyToken"
:
eventObj
.
replyToken
,
"messages"
:[
{
"type"
:
"text"
,
"text"
:
"Hello, user"
},
{
"type"
:
"text"
,
"text"
:
"May I help you?"
}
]
test_load
(
eventObj
.
replyToken
);
res
.
sendStatus
(
200
);
});
function
reply_loaded
(
replyToken
,
question
,
answer
){
request
.
post
({
url
:
TARGET_URL
,
headers
:
{
'Authorization'
:
`Bearer
${
TOKEN
}
`
},
json
:
{
"replyToken"
:
replyToken
,
"messages"
:[
{
"type"
:
"text"
,
"text"
:
question
},{
"type"
:
"text"
,
"text"
:
answer
}]
}
},(
error
,
response
,
body
)
=>
{
console
.
log
(
body
)
});
});
}
function
test_load
(
replyToken
){
var
contents
;
var
question
;
var
answer
;
request
.
get
({
url
:
Question_URL
},
function
(
err
,
res
,
body
){
contents
=
JSON
.
parse
(
body
);
for
(
var
i
=
0
;
i
<
28
;
i
++
){
console
.
log
(
"====================================="
);
question
=
contents
[
"RESULT"
][
i
][
"question"
];
answer
=
contents
[
"RESULT"
][
i
][
"answer01"
]
+
"/"
+
contents
[
"RESULT"
][
i
][
"answer02"
];
reply_loaded
(
replyToken
,
question
,
answer
);
console
.
log
(
"replyed"
);
console
.
log
(
"====================================="
);
}
});
}
res
.
sendStatus
(
200
);
});
// function test(replyToken, answersheet){
// }
// function trans(replyToken, message) {
// request.post(
// {
// url: Question_URL,
// headers: {
// 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
// 'X-Naver-Client-Id': `${PAPAGO_ID}`,
// 'X-Naver-Client-Secret': `${PAPAGO_SECRET}`
// },
// body: 'source=ko&target=en&text=' + message,
// json:true
// },(error, response, body) => {
// if(!error && response.statusCode == 200) {
// console.log(body.message);
// var transMessage = body.message.result.translatedText;
// request.post(
// {
// url: TARGET_URL,
// headers: {
// 'Authorization': `Bearer ${TOKEN}`
// },
// json: {
// "replyToken":replyToken,
// "messages":[
// {
// "type":"text",
// "text":transMessage
// }
// ]
// }
// },(error, response, body) => {
// console.log(body)
// }
// );
// }
// }
// )
// }
try
{
const
option
=
{
...
...
@@ -64,4 +127,4 @@ try {
console
.
log
(
'[HTTPS] HTTPS 오류가 발생하였습니다. HTTPS 서버는 실행되지 않습니다.'
);
console
.
log
(
error
);
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment