使用多个应用初始化Firebase: - 节点js,服务器端: -
admin.auth(requiredFile.app).createCustomToken(uid, additionalClaims)
在AngularClient方面,我成功收到了令牌: - 根据需要传递相同的令牌。
firebase.auth(allApps[i]).signInWithCustomToken(token)
.then((res)=>{
console.log(res);
})
.catch((error)=>{
// Handle Errors here.
var errorCode = error.code;
var errorMessage = error.message;
console.log(error);
});
ERROR SCREENSHOT: -
以下是完整的错误文字
错误: - 无法加载资源:服务器响应状态为404()base:1无法加载googleapis.com/identitytoolkit/v3/relyingparty / ...:预检的响应包含无效的HTTP状态代码404. zone .js:388 L代码:“auth / network-request-failed”消息:“发生网络错误(例如超时,中断连接或无法访问的主机)。” proto:错误
我在浏览器(Chrome)中启用了cors,但仍未解决问题。 谁能告诉我它的原因是什么?