Added bing Composite Search support
This commit is contained in:
parent
1aa77581a4
commit
352f36d7c9
2 changed files with 33 additions and 1 deletions
11
README.md
11
README.md
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue