我已使用我的Google帐户登录firebase.com。 现在在命令提示符下我正在做
class Default_Service_NewSugar {
if($_SERVER['APPLICATION_ENV']=="development"){
protected $base_url = "http://url1";
} else {
protected $base_url = "https://url2";
}
function test() {
return $this->base_url;
}
}
它一直在问我电子邮件和密码。 由于我通过谷歌登录,我不确定firebase帐户的密码是什么。我已在我的应用中启用了电子邮件和密码验证,并且还添加了用户,但仍无法通过firebase init命令成功登录。
有什么建议吗?
答案 0 :(得分:1)
您可能还在使用不支持Google身份验证的Firebase命令行工具版本。要升级,请运行:
npm update -g firebase-tools
在此之后,firebase login
会弹出一个浏览器窗口,您可以在其中完成Google登录。
答案 1 :(得分:0)
现在有一个可以添加的交互式标记可以打开浏览器,您可以使用您的Google帐户/凭据登录:
firebase login --interactive