Comparing version 0.1.1 to 0.1.2
{ | ||
"name": "imnaver", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "A node library for Naver Open API", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
# imbing | ||
A client wrapper for Naver OPEN API in Windows Azure Marketplace. | ||
A client wrapper for Naver Search OPEN API | ||
refer to http://developer.naver.com/wiki/pages/SrchAPI for more information | ||
# Installation | ||
@@ -15,3 +17,3 @@ | ||
var naver = require('imnaver'); | ||
var b = NaverSearch({appId:'your-api-key'}); | ||
var b = NaverSearch({key:'your-api-key'}); | ||
@@ -21,7 +23,4 @@ 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) ; | ||
console.log(body.rss.channel.item[0].title) ; | ||
console.log(body.rss.channel.item[0].description) ; | ||
} | ||
@@ -28,0 +27,0 @@ else |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3372
38