我想在不使用服务帐户 json 的情况下创建自定义令牌。尝试了以下配置项:https : //firebase.google.com/docs/auth/admin/create-custom-tokens#using_a_service_account_id
https://firebase.google.com/docs/auth/admin/create-custom-tokens#letting_the_admin_sdk_discover_a_service_account
并使用以下代码生成令牌
admin.auth().createCustomToken(uid)
.then(function(customToken) {
// Send token back to client
})
.catch(function(error) {
console.log('Error creating custom token:', error);
});
得到以下错误:
'未能确定服务帐户。确保使用服务帐户凭据初始化 SDK。或者,指定具有 iam.serviceAccounts.signBlob 权限的服务帐户。原始错误:错误:发出请求时出错:getaddrinfo ENOTFOUND 元数据元数据:80。错误代码:ENOTFOUND'
使用最新的“firebase-admin”npm 模块。
慕桂英546537
皈依舞
人到中年有点甜
相关分类