小编Vil*_*P P的帖子

如何获取 firebase firestore 配置的 googleappid?

我正在尝试创建一个连接到 firestore 来存储和检索数据的 flutter 应用程序。从 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',
        ),
    );
Run Code Online (Sandbox Code Playgroud)

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

请告知 Final Firestore firestore = new Firestore(app: app);

firebase flutter google-cloud-firestore

5
推荐指数
1
解决办法
4039
查看次数

标签 统计

firebase ×1

flutter ×1

google-cloud-firestore ×1