Showing
1 changed file
with
18 additions
and
0 deletions
... | @@ -34,6 +34,24 @@ apiRouter.post('/sayHello', function(req, res) { | ... | @@ -34,6 +34,24 @@ apiRouter.post('/sayHello', function(req, res) { |
34 | res.status(200).send(responseBody); | 34 | res.status(200).send(responseBody); |
35 | }); | 35 | }); |
36 | 36 | ||
37 | +apiRouter.post('/question3', function(req, res) { | ||
38 | + const responseBody = { | ||
39 | + version: "2.0", | ||
40 | + template: { | ||
41 | + outputs: [ | ||
42 | + { | ||
43 | + "simpleText": { | ||
44 | + "text": "다음과 같은 상황에서 어떻게 대답하겠습니까? 해당 숫자를 입력해 주세요. \n 친구: 나 기분 안 좋아서 옷 샀어 \n 1. 왜 기분 안 좋아? \n 2. 무슨 옷 샀어?" | ||
45 | + } | ||
46 | + } | ||
47 | + ] | ||
48 | + } | ||
49 | + }; | ||
50 | + | ||
51 | + res.status(200).send(responseBody); | ||
52 | +}); | ||
53 | + | ||
54 | + | ||
37 | app.listen((process.env.PORT || 3000), function() { | 55 | app.listen((process.env.PORT || 3000), function() { |
38 | console.log('Example skill server listening on port 3000!'); | 56 | console.log('Example skill server listening on port 3000!'); |
39 | }); | 57 | }); |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
-
Please register or login to post a comment