-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews.js
30 lines (27 loc) · 1.33 KB
/
news.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// 네이버 검색 API예제는 블로그를 비롯 전문자료까지 호출방법이 동일하므로 blog검색만 대표로 예제를 올렸습니다.
// 네이버 검색 Open API 예제 - 블로그 검색
var express = require('express');
var app = express();
var client_id = "zIAqvKoIcFlaWPLosWYj"; // 발급받은 CLIENT ID를 넣어줍니다.
var client_secret = "dZvmmUa7YD"; // 발급받은 CLIENT SECRET을 넣어줍니다.
app.get('/search/blog', function (req, res) {
var api_url = 'https://openapi.naver.com/v1/search/blog?query=' + encodeURI(req.query.query); // json 결과
// var api_url = 'https://openapi.naver.com/v1/search/blog.xml?query=' + encodeURI(req.query.query); // xml 결과
var request = require('request');
var options = {
url: api_url,
headers: {'X-Naver-Client-Id':client_id, 'X-Naver-Client-Secret': client_secret}
};
request.get(options, function (error, response, body) {
if (!error && response.statusCode == 200) {
res.writeHead(200, {'Content-Type': 'text/json;charset=utf-8'});
res.end(body);
} else {
console.log('error = ' + response.statusCode);
res.status(response.statusCode).end();
}
});
});
app.listen3000, function () {
console.log('http://localhost:3000/search/blog?query=검색어 app listening on port 3000!');
};