2.0.0 • Published 7 years ago
azure-cognitiveservices-customsearch v2.0.0
Microsoft Azure SDK for Node.js - Cognitive Services Custom Search
This project provides a Node.js package that makes it easy to work with Microsoft Azure Cognitive Services Custom Search API. Right now it supports:
- Node.js version: 6.x or higher
How to Install
npm install azure-cognitiveservices-customsearch
How to use
Create a Cognitive Services Bing Search Account
const msRestAzure = require('ms-rest-azure');
const CognitiveServicesManagement = require("azure-arm-cognitiveservices");
let client;
let createAccount = msRestAzure.interactiveLogin().then((credentials) => {
client = new CognitiveServicesManagement(credentials, suite.subscriptionId);
return client.accounts.create('groupname', 'accountname', {
sku: {
name: "S1"
},
kind: "Bing.Search",
location: "westus",
properties: {}
});
}).catch((err) => {
console.log('An error ocurred');
console.dir(err, {depth: null, colors: true});
});
List the keys from the created account
let serviceKey;
createAccount.then((result) => {
return client.accounts.listKeys('groupname', 'accountname');
}).then((result) => {
serviceKey = result.key1;
console.log(result.key2);
}).catch((err) => {
console.log('An error ocurred');
console.dir(err, {depth: null, colors: true});
});
Create credentials
const CognitiveServicesCredentials = require('ms-rest-azure').CognitiveServicesCredentials;
let credentials = new CognitiveServicesCredentials(serviceKey);
Query the Custom Search API
const CustomSearchAPIClient = require('azure-cognitiveservices-customsearch');
let customSearchApiClient = new CustomSearchAPIClient(credentials);
customSearchApiClient.customInstance.search('cortana', {customConfig: 10}, function (err, result, request, response) {
if (err) throw err;
console.log(result.queryContext.originalQuery);
console.log(result.webPages.value);
});
More Detailed Information
https://azure.microsoft.com/en-us/try/cognitive-services/ under "Search"
Related Projects
2.0.0
7 years ago
1.3.0-preview
7 years ago
1.2.0-preview
7 years ago
1.1.0-preview
7 years ago
1.0.1-preview
7 years ago
1.0.0-preview
7 years ago