共享扩展▸应用程序共享扩展中的Firebase getDocuments

时间:2020-03-08 20:29:56

标签: swift firebase google-cloud-firestore ios-sharesheet

我有一个应用程序,该应用程序支持用于图像共享的扩展扩展到Firebase / Firestore

我正在尝试获取相关文档,以便在上传图片后设置数据库记录。

1。使用getDocuments

Firestore.firestore().collection("groups").getDocuments { (snapshot, error) in
        // Further code implementation
}

2。使用addSnapshotListener

Firestore.firestore().collection("groups").addSnapshotListener { (snapshot, error) in
        // Further code implementation
}

在以上两个代码回调中均未执行。

当我能够执行Auth.auth()用户登录操作时。任何帮助都会挽救我的应用寿命。

请帮助我解决这个问题。

0 个答案:

没有答案