최유정

added output message

Showing 1 changed file with 11 additions and 1 deletions
......@@ -59,12 +59,22 @@ function sendLocation(replyToken, latitude, longitude, locationAdd, locationName
"replyToken": replyToken,
"messages": [
{
"type":"text",
"text":"선택하신 내용을 바탕으로 가실 만한 곳을 추천해드릴게요!"
},
{
"type": "location",
"title": location_name,
"title": locationName,
"address": locationAdd,
"latitude": latitude,
"longitude": longitude
},
{
"type":"text",
"text":"오늘은 "+locationName+" 어떠신가요?"
}
]
}
}, (error, response, body) => {
......