使用 Watson Developer Cloud SDK
開始使用 Watson 服務的最快方法是使用 Watson Developer Cloud SDK。以下 GitHub 儲存庫包含安裝說明和基本用法示例:
例如,以下是如何使用 Node.js SDK 進行 AlchemyLanguage API 呼叫:
安裝 SDK:
$ npm install watson-developer-cloud
將以下程式碼儲存到檔案中(我們將其稱為 app.js )。確保使用 API金鑰替換 API_KEY
。
// Instantiate the service
var AlchemyLanguageV1= require('watson-developer-cloud/alchemy-language/v1');
var alchemy_language = AlchemyLanguageV1({
api_key: 'API_KEY'
})
var parameters = {
extract: [
'entities',
'keywords'
]
url: 'https://www.ibm.com/us-en/'
};
alchemy_language.combined(parameters, function (err, response) {
if (err)
console.log('error:', err);
else
console.log(JSON.stringify(response, null, 2));
});
執行應用程式:
$ node app.js