Showing
1 changed file
with
11 additions
and
3 deletions
... | @@ -214,6 +214,14 @@ app.post('/hook', async function (req, res) { | ... | @@ -214,6 +214,14 @@ app.post('/hook', async function (req, res) { |
214 | "messages": [ | 214 | "messages": [ |
215 | { | 215 | { |
216 | "type": "text", | 216 | "type": "text", |
217 | + "text": "오늘은 할 일이 없으시네요!" | ||
218 | + }, | ||
219 | + { | ||
220 | + "type": "text", | ||
221 | + "text": "그렇다면 밖에 나가볼까요?" | ||
222 | + }, | ||
223 | + { | ||
224 | + "type": "text", | ||
217 | "text": "하고 싶은 일을 골라주세요.\n1. 밥 먹기\n2. 카페 가기\n3. 술 마시기\n4. 놀러가기 \n(숫자만 입력해주세요)" | 225 | "text": "하고 싶은 일을 골라주세요.\n1. 밥 먹기\n2. 카페 가기\n3. 술 마시기\n4. 놀러가기 \n(숫자만 입력해주세요)" |
218 | } | 226 | } |
219 | ] | 227 | ] |
... | @@ -230,7 +238,7 @@ app.post('/hook', async function (req, res) { | ... | @@ -230,7 +238,7 @@ app.post('/hook', async function (req, res) { |
230 | { | 238 | { |
231 | url: TARGET_URL, headers: { 'Authorization': `Bearer ${TOKEN}` }, json: { | 239 | url: TARGET_URL, headers: { 'Authorization': `Bearer ${TOKEN}` }, json: { |
232 | "replyToken": eventObj.replyToken, | 240 | "replyToken": eventObj.replyToken, |
233 | - "messages": [{ "type": "text", "text": " 지금 가장 땡기는 음식은? \n1. 피자, 브런치, 파스타같은 양식\n2. 고기, 찌개, 국밥같은 한식\n3. 마라탕, 짬뽕, 양꼬치같은 중식\n4. 돈까스, 스시, 텐동같은 일식\n5. 기타\n(숫자만 입력해주세요)" }] | 241 | + "messages": [{ "type": "text", "text": " 지금 가장 땡기는 음식은? \n1. 양식 (피자,파스타,브런치) \n2. 한식(찌개, 고기, 국밥) \n3. 중식(마라탕, 짬뽕, 양꼬치) \n4. 일식(돈까스, 스시, 텐동)\n5. 기타\n(숫자만 입력해주세요)" }] |
234 | } | 242 | } |
235 | }, (error, response, body) => { | 243 | }, (error, response, body) => { |
236 | console.log(body) | 244 | console.log(body) |
... | @@ -241,7 +249,7 @@ app.post('/hook', async function (req, res) { | ... | @@ -241,7 +249,7 @@ app.post('/hook', async function (req, res) { |
241 | { | 249 | { |
242 | url: TARGET_URL, headers: { 'Authorization': `Bearer ${TOKEN}` }, json: { | 250 | url: TARGET_URL, headers: { 'Authorization': `Bearer ${TOKEN}` }, json: { |
243 | "replyToken": eventObj.replyToken, | 251 | "replyToken": eventObj.replyToken, |
244 | - "messages": [{ "type": "text", "text": "어떤 카페가 가고 싶은가요? \n1. 사진 찍기 좋은 감성카페\n2. 카공하기 좋은 카페 \n3. 디저트가 맛있는 카페\n(숫자만 입력해주세요)" }] | 252 | + "messages": [{ "type": "text", "text": "어떤 카페가 가고 싶은가요? \n1. 사진 찍기 좋은 감성 카페\n2. 카공하기 좋은 카페 \n3. 디저트가 맛있는 카페\n(숫자만 입력해주세요)" }] |
245 | } | 253 | } |
246 | }, (error, response, body) => { | 254 | }, (error, response, body) => { |
247 | console.log(body) | 255 | console.log(body) |
... | @@ -252,7 +260,7 @@ app.post('/hook', async function (req, res) { | ... | @@ -252,7 +260,7 @@ app.post('/hook', async function (req, res) { |
252 | { | 260 | { |
253 | url: TARGET_URL, headers: { 'Authorization': `Bearer ${TOKEN}` }, json: { | 261 | url: TARGET_URL, headers: { 'Authorization': `Bearer ${TOKEN}` }, json: { |
254 | "replyToken": eventObj.replyToken, | 262 | "replyToken": eventObj.replyToken, |
255 | - "messages": [{ "type": "text", "text": "어떤 곳에서 술 한잔 할까요? \n1. 곱창이나 육회와 소주 한잔\n2.분위기 좋은 이자카야\n3.바삭바삭한 전과 함께 막걸리\n4. 부담없이 가볍게 맥주\n(숫자만 입력해주세요)" }] | 263 | + "messages": [{ "type": "text", "text": "어떤 곳에서 술 한잔 할까요? \n1. 곱창이나 육회와 소주 한잔\n2. 분위기 좋은 이자카야\n3. 바삭바삭한 전과 함께 막걸리\n4. 부담 없이 가볍게 맥주\n(숫자만 입력해주세요)" }] |
256 | } | 264 | } |
257 | }, (error, response, body) => { | 265 | }, (error, response, body) => { |
258 | console.log(body) | 266 | console.log(body) | ... | ... |
-
Please register or login to post a comment