imbing
A client wrapper for Naver OPEN API in Windows Azure Marketplace.
Installation
$ npm install imnaver
Usage
var naver = require('imnaver');
var b = NaverSearch({appId:'your-api-key'});
b.search('INAPP', {target: 'news'}, function(error, response, body){
if ( !error ) {
console.log(body.d.results[0].ID) ;
console.log(body.d.results[0].Title) ;
console.log(body.d.results[0].Url) ;
console.log(body.d.results[0].Source) ;
console.log(body.d.results[0].Description) ;
}
else
console.log(error);
});
GIT
https://github.com/INAPP-Mobile/imnaver.git
License
MIT