我正在尝试在我的Web应用中配置AppCheck(使用SvelteKit)。
我已经用recaptcha注册了我的Web应用程序,然后添加了以下基本代码:
onMount(async () => {
const appCheck = initializeAppCheck(app, {
provider: new ReCaptchaV3Provider('my-key'),
isTokenAutoRefreshEnabled: true
})
})
但是它失败了,错误号为400。这是因为POST请求“未知”Recaptcha(和Firebase集合)应该在哪里。
发布网址:https://content-firebaseappcheck.googleapis.com/v1/projects/undefined/apps/undefined:exchangeRecaptchaV3Token?key=undefined
为什么会这样?我该怎么补救?
*唯一类似的情况是here,但它没有解,并且可能不相同。
1条答案
按热度按时间lrpiutwd1#
已解决:由于错误的firebaseConfig数据,请求格式错误。