如何为firebase firestore配置获取googleappid?

时间:2018-08-11 08:40:57

标签: firebase google-cloud-firestore flutter

我正在尝试创建一个flutter应用程序,该应用程序连接到firestore以存储和检索数据。从flutter cloud_firestore插件文档中,我可以看到我需要一些值来配置它。

final FirebaseApp app = await FirebaseApp.configure(
    name: 'test',
    options: const FirebaseOptions(
           googleAppID: '1:79601577497:ios:5f2bcc6ba8cecddd',
           gcmSenderID: '79601577497',
           apiKey: 'AIzaSyArgmRGfB5kiQT6CunAOmKRVKEsxKmy6YI-G72PVU',
           projectID: 'flutter-firestore',
        ),
    );

我知道如何获取gcmSenderID,apiKey和projectID,但是我无法理解如何获取googleAppID。

请咨询   最终的Firestore firestore =新的Firestore(app:app);

2 个答案:

答案 0 :(得分:1)

如@ martin-zeitler所建议,该ID在下载的google-services.json文件中可用。 感谢您指出。

答案 1 :(得分:0)

您可以从this link获得gcmsenderId

enter image description here