这是https://www.npmjs.com/package/@google-cloud/speech中的代码
var speech = require('@google-cloud/speech');
var client = speech({
// optional auth parameters.
});
使用@ google-cloud / speech时如何传递我的API密钥进行身份验证?我阅读了文档并看到了示例,但他们没有谈论使用API密钥。是否可以使用API密钥进行身份验证?
最佳答案
您需要服务帐户密钥(它是JSON keyFile)。去
Google speech api dashboard -> credentials -> create credentials
-> Service account key -> Compute engine default -> download json file.
最后将其添加为config作为keyFile,例如:
{
projectId: 'my-project',
keyFile: './myKeyFile.json'
};
资源:
https://bloggerbrothers.com/2017/01/15/the-complete-guide-to-enabling-speech-recognition-on-an-rpi3-in-nodejs/
关于node.js - 在npm @ google-cloud/speech中使用API key ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45706722/