我有一个GCD帐户,我在其中创建了一个项目和数据存储。我下载了该项目的服务帐户密钥,并将其存储在本地PC中。
现在,我的PC中运行着一个简单的节点应用程序。此节点应用程序具有一个简单的查询,可从上面创建的Google数据存储区中获取数据。我所需要知道的是,我应该如何在节点应用程序中配置服务帐户密钥以访问数据存储区和相应的实体,因为在尝试访问时出现这样的错误-“缺少权限或权限不足”。
节点应用查询-
// Adding a Sample Entity
async function quickStart() {
// Your Google Cloud Platform project ID
const projectId = 'XXX';
// Creates a client
const datastore = new Datastore({
projectId: projectId,
});
// The kind for the new entity
const kind = 'xxx';
// The name/ID for the new entity
const name = xxxx;
// The Cloud Datastore key for the new entity
const sampleKey = datastore.key([kind, name]);
const [entity] = await datastore.get(sampleKey);
console.log(entity);
}
quickStart().catch(console.error);
答案 0 :(得分:1)
要使用服务帐户凭据,请将您的客户端代码更改为:
xpath
答案 1 :(得分:0)
您必须创建一个数据存储模拟器。
请按照以下步骤操作。
gcloud components install cloud-datastore-emulator
gcloud beta emulators datastore start
oiputput:[数据存储] Dev App Server现在正在运行。
更多详细信息:https://cloud.google.com/datastore/docs/tools/datastore-emulator