Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vodolaz095/yaboss
Simple nodeJS wrapper for yahoo BOSS webapi
https://github.com/vodolaz095/yaboss
Last synced: about 3 hours ago
JSON representation
Simple nodeJS wrapper for yahoo BOSS webapi
- Host: GitHub
- URL: https://github.com/vodolaz095/yaboss
- Owner: vodolaz095
- License: mit
- Created: 2013-11-28T21:48:18.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-06-19T18:47:28.000Z (over 10 years ago)
- Last Synced: 2024-10-11T12:19:13.422Z (about 1 month ago)
- Language: JavaScript
- Size: 211 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
yaboss
======Simple nodejs wrapper for Yahoo BOSS web api
Example
======```javascript
var YaBoss = require('yaboss');
var YaBossClient = new YaBoss('someCustomerKey', 'someCustomerSecret');YaBossClient.search('web','yahoo', {count: 10}, function(err,dataFound,response){...});
YaBossClient.searchWeb('yahoo', {count: 10}, function(err,dataFound,response){...});
YaBossClient.searchLimitedWeb('yahoo', {count: 10}, function(err,dataFound,response){...});
YaBossClient.searchImages('yahoo', {count: 10, dimensions: 'medium'}, function(err,dataFound,response){...});
YaBossClient.searchNews('yahoo', {count: 10}, function(err,dataFound,response){...});
YaBossClient.searchBlogs('yahoo', {count: 10}, function(err,dataFound,response){...});
YaBossClient.searchAds('yahoo', {count: 10}, function(err,dataFound,response){...});
YaBossClient.getGeoSearch('yahoo', {count: 10}, function(err,dataFound,response){...});```
Full Yahoo BOSS Api documentation
======[http://developer.yahoo.com/boss/search/boss_api_guide/](http://developer.yahoo.com/boss/search/boss_api_guide/)
Test
======[![Build Status](https://travis-ci.org/vodolaz095/yaboss.png)](https://travis-ci.org/vodolaz095/yaboss)