JKL

Update_Instruction

Showing 1 changed file with 44 additions and 1 deletions
...@@ -15,6 +15,49 @@ app.post('/message', (req, res) => { ...@@ -15,6 +15,49 @@ app.post('/message', (req, res) => {
15 const goMain = '처음으로'; 15 const goMain = '처음으로';
16 var data; 16 var data;
17 17
18 + if(question == "도움말"){
19 + data ={
20 + "version": "2.0",
21 + "template": {
22 + "outputs": [
23 + {
24 + "listCard": {
25 + "header": {
26 + "title": "KHU 학사정보 알리미를 소개합니다."
27 + },
28 + "items": [
29 + {
30 + "title": "KHU 학사정보 알리미",
31 + "description": "챗봇으로 손쉽게 알아보는 학사정보",
32 + "imageUrl": "https://mblogthumb-phinf.pstatic.net/20140716_293/envicontest_1405437648963lV4y4_GIF/University_Seal.gif?type=w2",
33 + "link": {
34 + "web": ""
35 + }
36 + },
37 + {
38 + "title": "오늘의 학식이 궁금하세요?",
39 + "description": "지금 바로 알아보세요.",
40 + "imageUrl": "https://cdn-icons.flaticon.com/png/128/561/premium/561611.png?token=exp=1638429953~hmac=d25a53d3500363101c3364408df33e55",
41 + "link": {
42 + "web": ""
43 + }
44 + },
45 + {
46 + "title": "셔틀버스 정보 알아보기",
47 + "description": "셔틀버스 정보 알아보기",
48 + "imageUrl": "https://cdn-icons-png.flaticon.com/128/808/808375.png",
49 + "link": {
50 + "web": ""
51 + }
52 + }
53 + ],
54 + }
55 + }
56 + ]
57 + }
58 + }
59 + }
60 +
18 if (question == "서울캠퍼스") { 61 if (question == "서울캠퍼스") {
19 data = { 62 data = {
20 'version': '2.0', 63 'version': '2.0',
...@@ -38,7 +81,7 @@ app.post('/message', (req, res) => { ...@@ -38,7 +81,7 @@ app.post('/message', (req, res) => {
38 'template': { 81 'template': {
39 'outputs': [{ 82 'outputs': [{
40 'simpleImage': { 83 'simpleImage': {
41 - 'imageUrl': "https://coop.khu.ac.kr/wp-content/uploads/2021/11/20211129-1301x2048.png", 84 + 'imageUrl': "",
42 'altText' : "국제캠퍼스 식단입니다." 85 'altText' : "국제캠퍼스 식단입니다."
43 } 86 }
44 }], 87 }],
......