Dialogflowエージェントをnode.js
コードに接続する簡単な方法はありますか? Dialogflowエージェントの設定ページから取得した正しいprojectIDでこのコードを使用すると、次のエラーが発生します。
エラー:アプリケーションのデフォルト認証情報を取得中に予期しないエラーが発生しました:デフォルト認証情報をロードできませんでした。詳細については、 https://developers.google.com/accounts/docs/application-default-credentials を参照してください。
const sessionClient = new dialogflow.SessionsClient();
const sessionPath = sessionClient.sessionPath(projectId, sessionId);
ページにアクセスしましたが、他のAPIと多くの設定を引用しているため、混乱していると思いますが、どうすれば解決できますか?
APIやその他の失われたものをインストールせずに、ファイルから情報を取得してすべてをロードしたいと思います...
十分に文書化されていませんが、認証する最も簡単な方法は、Googleクラウドプラットフォームコンソールで提供されるJSONファイルを使用することです。
const sessionClient = new dialogflow.SessionsClient({
keyFilename: '/path/to/google.json'
});
const sessionPath = sessionClient.sessionPath(projectId, sessionId);
これは他のすべてのクライアントでも機能します。 ContextsClients
、EntityTypesClient
など。
私は私のために働いたコードを書いています。 参照リンク2 に記載されているすべての手順に従ってください。コーディングの目的で、提供されているスニペットを使用できます。
Google Cloud OauthのサンプルJSONも追加しました
参照:
//Downloaded JSON format
{
"type": "service_account",
"project_id": "mybot",
"private_key_id": "123456asd",
"private_key": "YOURKEY",
"client_email": "[email protected]",
"client_id": "098091234",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/yourID%40mybot.iam.gserviceaccount.com"
}
//------*********************---------------------------
//
const projectId = 'mybot';
//https://dialogflow.com/docs/agents#settings
// generate session id (currently hard coded)
const sessionId = '981dbc33-7c54-5419-2cce-edf90efd2170';
const query = 'hello';
const languageCode = 'en-US';
// Instantiate a DialogFlow client.
const dialogflow = require('dialogflow');
let privateKey = 'YourKey';
// as per goolgle json
let clientEmail = "[email protected]";
let config = {
credentials: {
private_key: privateKey,
client_email: clientEmail
}
}
const sessionClient = new dialogflow.SessionsClient(config);
// Define session path
const sessionPath = sessionClient.sessionPath(projectId, sessionId);
// The text query request.
const request = {
session: sessionPath,
queryInput: {
text: {
text: query,
languageCode: languageCode,
},
},
};
// Send request and log result
sessionClient
.detectIntent(request)
.then(responses => {
console.log('Detected intent');
const result = responses[0].queryResult;
console.log(` Query: ${result.queryText}`);
console.log(` Response: ${result.fulfillmentText}`);
if (result.intent) {
console.log(` Intent: ${result.intent.displayName}`);
} else {
console.log(` No intent matched.`);
}
})
.catch(err => {
console.error('ERROR:', err);
});
元の質問以降、Dialogflow認証のドキュメントが改善されました。ここですべての答えを見つける必要があります。
私は数ヶ月前に同じ問題を抱えています、これをチェックしてください、これは私がそれを解決する方法です。 Google Cloudがこの行を抽出したJSONから。
const dialogflow = require('dialogflow');
const LANGUAGE_CODE = 'en-US'
const projectId = 'projectid';
const sessionId = 'sessionId';
const query = 'text to check';
let privateKey = "private key JSON";
let clientEmail = "email acount from JSON";
let config = {
credentials: {
private_key: privateKey,
client_email: clientEmail
}
};
sessionClient = new dialogflow.SessionsClient(config);
async function sendTextMessageToDialogFlow(textMessage, sessionId) {
// Define session path
const sessionPath = this.sessionClient.sessionPath(projectId, sessionId);
// The text query request.
const request = {
session: sessionPath,
queryInput: {
text: {
text: textMessage,
languageCode: LANGUAGE_CODE
}
}
}
try {
let responses = await this.sessionClient.detectIntent(request)
console.log('DialogFlow.sendTextMessageToDialogFlow: Detected intent', responses);
return responses
} catch (err) {
console.error('DialogFlow.sendTextMessageToDialogFlow ERROR:', err);
throw err
}
};
sendTextMessageToDialogFlow(query, sessionId)