从今天开始的一周前,我的代码在Firebase Cloud Functions上运行良好。
我已经尝试了多种解决方案来调试问题,但是每次我的代码被激活时都会碰到这堵墙:
{"errors":[{"code":20,"message":"Authentification key is not active"}
{"code":21,"message":"No permission for this authentication key"}]}
一种解决方案已将此错误代码更改为另一种:
{"error":{"code":403,"message":"Identity Toolkit API has not been used in project xxxxxx before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/identitytoolkit.googleapis.com/overview?project=xxxxxx then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.","errors":[{"message":"Identity Toolkit API has not been used in project 818729994826 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/identitytoolkit.googleapis.com/overview?project=xxxxxx then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.","domain":"usageLimits","reason":"accessNotConfigured","extendedHelp":"https://console.developers.google.com"}],"status":"PERMISSION_DENIED"}}
这使我相信,即使代码托管在Google域中(我认为应该自动对其进行身份验证),这也与身份验证相关。
答案 0 :(得分:0)
好的。我找到了错误的来源,日志响应不是来自Google,而是来自我自己的代码。
我正在一个团队中工作,而我不知道我的团队中的一位成员做了一些更改(不幸的是,这是我正在工作的环境,所以没有git或没有提及正在发生的变化)。
得出此结论的过程类似于在Wordpress中一次禁用一个插件。
我将我的代码分解成段并运行了它们,它们运行得很好。直到我遇到正在与api对话的代码,因此才吐出此错误。
希望可以帮助任何人在错误调试中遇到一些未知的问题。另外,学习单元测试可能是一个很好的警告。