我们正在开发具有Firebase的Ionic应用程序。 这是一个与Ionic v1一起运行的旧项目。 我们正在构建phonegap:
PhoneGap (iOS / Android / Windows)
cli-7.1.0 (4.5.4 / 6.3.0 / 5.0.0)
一切正常,并发布我们想要确保访问Firebase的应用程序。
为了保护对Firebase的访问,我们限制了Google开发者控制台对GoogleAPI密钥的访问,如下所述:
我们在使用iOS版本时遇到了麻烦(适用于android)
我们做了什么:
:
<platform name="ios">
<resource-file src="GoogleService-Info.plist" />
</platform>
现在我们遇到此错误:
Error : {"error":{"code":403,"message":"Requests from this ios client application <empty> are blocked.","errors":[{"message":"Requests from this ios client application <empty> are blocked.","domain":"global","reason":"forbidden"}],"status":"PERMISSION_DENIED"}}
我已经找了两天,但我不明白:
先谢谢您
大卫