문성준

Add an annotation

...@@ -6,6 +6,8 @@ const TOKEN = config.TOKEN; ...@@ -6,6 +6,8 @@ const TOKEN = config.TOKEN;
6 const KOFIC_URL_MovieList = 'http://www.kobis.or.kr/kobisopenapi/webservice/rest/movie/searchMovieList.json' 6 const KOFIC_URL_MovieList = 'http://www.kobis.or.kr/kobisopenapi/webservice/rest/movie/searchMovieList.json'
7 const bodyParser = require('body-parser'); 7 const bodyParser = require('body-parser');
8 8
9 +//Enter a movie title in the message variable.
10 +//It will then return the movie title, director, and actor information to Line Messenger.
9 exports.movielist = function (replyToken, message) { 11 exports.movielist = function (replyToken, message) {
10 var encodedMessage = encodeURI(message); 12 var encodedMessage = encodeURI(message);
11 request.get( 13 request.get(
......