은승우

Update concert.js

......@@ -134,12 +134,12 @@ function handleEvent(event) {
request(options, function(error,result,body){
if(error) throw new Error(error);
var videourl = { type: 'uri', label: '관련 영상', uri:''};
var videourl = { type: 'location', label: '관련 영상', title:'name',address:''};
var temp1 = body.split(':');
videourl.uri += "https://www.youtube.com/watch?v=" + temp1[13].substr(2,11);
videourl.address += "https://www.youtube.com/watch?v=" + temp1[13].substr(2,11);
console.log(videourl.uri);
console.log(videourl.address);
client.replyMessage(event.replyToken, videourl).then(resolve).catch(reject);
});
});
......