我正在对我的一个应用程序使用 Firebase 身份验证,并希望实现
signInWithRedirect
(而不是 signInWithPopup
)。我正在遵循提供的文档 here
并希望在本地托管文件(选项 4)。
根据说明,我应该使用以下说明下载文件:
mkdir signin_helpers/ && cd signin_helpers
wget https://<project>.firebaseapp.com/__/auth/handler
wget https://<project>.firebaseapp.com/__/auth/handler.js
wget https://<project>.firebaseapp.com/__/auth/experiments.js
wget https://<project>.firebaseapp.com/__/auth/iframe
wget https://<project>.firebaseapp.com/__/auth/iframe.js
wget https://<project>.firebaseapp.com/__/firebase/init.json
虽然所有其他文件(如
auth/handler
等)都已成功下载,但我无法下载firebase/init.json
文件。我总是在这个特定文件上收到 404 错误。
如何下载这个特定文件?或者所提供的说明有问题?任何有关此问题的帮助将不胜感激。
您可以自己创建 __/firebase/init.json 文件。只要包含以下内容就应该没问题:
{
"apiKey": "AIz...",
"authDomain": "your.authdomain.com"
}
其中 apiKey 是公共 Firebase API 密钥,authDomain 是身份验证域(大概是您用于自托管身份验证流程的域)。