最佳答案
所以,当我在Angular应用中初始化一个Firebase项目时,我突然遇到了这个错误:
Error: Failed to list Firebase projects. See firebase-debug.log for more info.
为了达到这一点,我遵循了文档在这里中的说明,这些说明基本上是运行的:
$ npm install -g firebase-tools
$ firebase login // Turns out I was already logged in
$ firebase projects:list // Make sure you can access your account.
不管怎样,回到错误。“好吧,“我认为。“我去查一下它指向我的日志。”我打开日志,看到:
HTTP Error: 401, Request had invalid authentication credentials.
Expected OAuth 2 access token, login cookie or other valid authentication credential.
See https://developers.google.com/identity/sign-in/web/devconsole-project.`
`FirebaseError: HTTP Error: 401, Request had invalid authentication credentials.
Expected OAuth 2 access token, login cookie or other valid authentication credential.
See https://developers.google.com/identity/sign-in/web/devconsole-project.`
关于“无效认证凭证”的部分;让我认为这与我没有登录到firebase有关,但firebase login
显示我已登录。
日志中的URL只带我到在我的应用程序中使用firebase认证的文档。好吧,我很乐意。但首先我需要这个命令工作,Firebase。
有人遇到过这种情况/有解决办法吗?