我最近为我的 firebase 应用启用了App Check,并在我的云功能和数据库上强制执行。云函数工作流运行正常。但是,我无法再从该函数访问数据库。我的可调用函数的最小版本如下所示:
exports.myFunc = functions.https.onCall(async (data, context) => {
const adminApp = admin.initializeApp();
const ref = adminApp.database().ref('some-node');
if (context.app === undefined) {
throw new functions.https.HttpsError(
'failed-precondition',
'The function must be called from an App Check verified app.',
);
}
try {
return (await ref.orderByKey().equalTo('foo').get()).exists()
} catch(exc) {
console.error(exc);
}
});
这曾经在 App Check 之前工作,但现在它失败了,我在日志中看到了这一点:
@firebase/database: FIREBASE WARNING: Invalid appcheck token ( https://my-project-default-rtdb.firebaseio.com/ ) 错误: 错误: 客户端离线。
似乎我需要做一些额外的事情来让admin
应用程序将 App Check 验证传递到数据库,但我还没有找到任何关于此的文档。我还尝试使用应用程序实例functions.app.admin
而不是初始化一个新实例,但这没有帮助。
我有最新版本的软件包:
"firebase-admin": "^9.10.0"
"firebase-functions": "^3.14.1"