我尝试在 flowground 连接器实现中使用带有 JSON Web 令牌的“google-api-nodejs-client”( https://github.com/googleapis/google-api-nodejs-client )。是否有可能让环境变量“GOOGLE_APPLICATION_CREDENTIALS”指向用户可以上传到流中的可配置 JWT 文件?
图书馆页面的客户端使用示例:
// This method looks for the GCLOUD_PROJECT and GOOGLE_APPLICATION_CREDENTIALS
// environment variables.
const auth = new google.auth.GoogleAuth({
scopes: ['https://www.googleapis.com/auth/cloud-platform']
});