when i try to execute composite search following error occurs
[Error: Parameter: Sources has an invalid pattern of characters]
Here is my code
Bing.composite("animal", {
sources: 'web+news', //Choises are web+image+video+news+spell
top: 10, // Number of results (max 15 for news, max 50 if other)
skip: 3, // Skip first 3 results
newsSortBy: "Date" //Choices are Date, Relevance
}, function (error, response, body) {
console.log(error, body);
console.log(body);
});
when i try to execute composite search following error occurs
Here is my code