ShinSeungMin

Add get rank feature

......@@ -18,23 +18,29 @@ let date = year + month + day-1;
//console.log(date);
let key = "b70513efc156d7b826bb8dc98ff2f1cf";
let url = "http://kobis.or.kr/kobisopenapi/webservice/rest/boxoffice/searchDailyBoxOfficeList.json?key=" + key + "&targetDt=";
let rank = 5
// apiurl = url + date + "&itemPerPage=" +rank-> "출력할 박스오피스 순위(5: 5위 까지, 10 : 10위 까지.../기본, 최대 10)"
let url = "http://kobis.or.kr/kobisopenapi/webservice/rest/boxoffice/searchDailyBoxOfficeList.json?key=" + key + "&targetDt=" + date + "&itemPerPage=";
//let rank = 5
//apiurl = url + date + "&itemPerPage=" +rank-> "출력할 박스오피스 순위(5: 5위 까지, 10 : 10위 까지.../기본, 최대 10)"
//console.log(url);
let options = {
'method' : 'GET',
'url' : url + date + "&itemPerPage=" + rank
'url' : url // + rank
};
request(options, function (error, response, body){
app.get('/BoxOffice',(req, res) => {
options.url = url + req.body.rank;
//console.log(req.body.rank);
request(options, function (error, response, body){
if (error){
throw new Error(error);
}
let info = JSON.parse(body);
console.log(info);
});
res.send(info);
});
})
// 박스오피스 순위 출력
......