This package contains an isomorphic SDK for SpellCheckClient.
- Node.js version 6.x.x or higher
- Browser JavaScript
npm install @azure/cognitiveservices-spellcheck
npm install @azure/ms-rest-nodeauth
import * as msRest from "@azure/ms-rest-js";
import * as msRestNodeAuth from "@azure/ms-rest-nodeauth";
import { SpellCheckClient, SpellCheckModels, SpellCheckMappers } from "@azure/cognitiveservices-spellcheck";
const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];
msRestNodeAuth.interactiveLogin().then((creds) => {
const client = new SpellCheckClient(creds, subscriptionId);
const text = "testtext";
const acceptLanguage = "testacceptLanguage";
const pragma = "testpragma";
const userAgent = "testuserAgent";
const clientId = "testclientId";
const clientIp = "testclientIp";
const location = "westus";
const actionType = "Edit";
const appName = "testappName";
const countryCode = "testcountryCode";
const clientMachineName = "testclientMachineName";
const docId = "testdocId";
const market = "testmarket";
const sessionId = "testsessionId";
const setLang = "testsetLang";
const userId = "testuserId";
const mode = "proof";
const preContextText = "testpreContextText";
const postContextText = "testpostContextText";
client.spellChecker(text, acceptLanguage, pragma, userAgent, clientId, clientIp, location, actionType, appName, countryCode, clientMachineName, docId, market, sessionId, setLang, userId, mode, preContextText, postContextText).then((result) => {
console.log("The result is:");
console.log(result);
});
}).catch((err) => {
console.error(err);
});
npm install @azure/ms-rest-browserauth
See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to Azure in the browser.
- index.html
<!DOCTYPE html>
<html lang="en">
<head>
<title>@azure/cognitiveservices-spellcheck sample</title>
<script src="node_modules/@azure/ms-rest-js/dist/msRest.browser.js"></script>
<script src="node_modules/@azure/ms-rest-browserauth/dist/msAuth.js"></script>
<script src="node_modules/@azure/cognitiveservices-spellcheck/dist/cognitiveservices-spellcheck.js"></script>
<script type="text/javascript">
const subscriptionId = "<Subscription_Id>";
const authManager = new msAuth.AuthManager({
clientId: "<client id for your Azure AD app>",
tenant: "<optional tenant for your organization>"
});
authManager.finalizeLogin().then((res) => {
if (!res.isLoggedIn) {
// may cause redirects
authManager.login();
}
const client = new Azure.CognitiveservicesSpellcheck.SpellCheckClient(res.creds, subscriptionId);
const text = "testtext";
const acceptLanguage = "testacceptLanguage";
const pragma = "testpragma";
const userAgent = "testuserAgent";
const clientId = "testclientId";
const clientIp = "testclientIp";
const location = "westus";
const actionType = "Edit";
const appName = "testappName";
const countryCode = "testcountryCode";
const clientMachineName = "testclientMachineName";
const docId = "testdocId";
const market = "testmarket";
const sessionId = "testsessionId";
const setLang = "testsetLang";
const userId = "testuserId";
const mode = "proof";
const preContextText = "testpreContextText";
const postContextText = "testpostContextText";
client.spellChecker(text, acceptLanguage, pragma, userAgent, clientId, clientIp, location, actionType, appName, countryCode, clientMachineName, docId, market, sessionId, setLang, userId, mode, preContextText, postContextText).then((result) => {
console.log("The result is:");
console.log(result);
}).catch((err) => {
console.log("An error occurred:");
console.error(err);
});
});
</script>
</head>
<body></body>
</html>