Added bing Composite Search support

This commit is contained in:
Lennard Westerveld 2015-03-24 15:33:31 +01:00
parent 1aa77581a4
commit 352f36d7c9
2 changed files with 33 additions and 1 deletions

View file

@ -19,6 +19,17 @@ var Bing = require('node-bing-api')({ accKey: "your-account-key" });
Bing.web("Pizza", function(error, res, body){
console.log(body);
},
{
top: 10, // Number of results (max 50)
skip: 3, // Skip first 3 results
});
```
#### Composite Search:
```js
Bing.composite("xbox", function(error, res, body){
console.log(body);
},
{
top: 10, // Number of results (max 50)
skip: 3, // Skip first 3 results