У меня запущена облачная служба Watson Tone, и я пытаюсь связать ее с моим файлом index.js.Однако, похоже, не хочет подключаться.
Код ниже:
const ToneAnalyzerV3 = require('watson-developer-cloud/tone-analyzer/v3');
const toneAnalyzer = new ToneAnalyzerV3({
version: '2017-09-21',
iam_apikey: 'omoNirDx1MUQwCdlHTQ-5Fxklx2_c0dUVAyMFIItFLty',
url: 'http://watson-row-analyser.eu-gb.cf.appdomain.cloud/#'
});
const text =
'Team, I know that times are tough! Product ' +
'sales have been disappointing for the past three ' +
'quarters. We have a competitive product, but we ' +
'need to do a better job of selling it!';
const toneParams = {
tone_input: { text: text },
content_type: 'application/json'
};
toneAnalyzer
.tone(toneParams)
.then((toneAnalysis) => {
console.log(JSON.stringify(toneAnalysis, null, 2));
})
.catch((err) => {
console.log('error:', err);
});
Текущий код ошибки:
<code>Marcs-MacBook-Pro:npm-global marcwatts$ node index1.js
error: { Not Found: Not Found
at formatError (/Users/marcwatts/Desktop/mxw817/DBTestApp/npm-global/node_modules/watson-developer-cloud/node_modules/ibm-cloud-sdk-core/lib/requestwrapper.js:111:17)
at /Users/marcwatts/Desktop/mxw817/DBTestApp/npm-global/node_modules/watson-developer-cloud/node_modules/ibm-cloud-sdk-core/lib/requestwrapper.js:259:19
at process._tickCallback (internal/process/next_tick.js:68:7)
name: 'Not Found',
code: 404,
message: 'Not Found',
body:
'"<!DOCTYPE html>\\n<html lang=\\"en\\">\\n<head>\\n<meta charset=\\"utf-8\\">\\n<title>Error</title>\\n</head>\\n<body>\\n<pre>Cannot POST /
\\ n \\ n \\ n "', заголовки: {' x-backside-transport ':' FAIL FAIL ', соединение:' close ',' Transfer-Encoding ':' chunked ',' content-security-policy ':' default-src \ 'none \' ',' content-type ':'text / html; charset = utf-8', дата: 'сб, 06 июля 2019 15:32:34 GMT', 'x-content-type-options': 'nosniff', 'x-powered-by':«Экспресс», «x-global -action-id»: «ba9308f85d20bf12a70673ff '}}
Ссылка на API для Watson:
https://cloud.ibm.com/apidocs/tone-analyzer?code=node
Код 404 означает« Не найдено ». AЗапрашиваемый элемент или параметр не существует. Что мне не хватает?