我有一个应用程序,该应用程序支持用于图像共享的扩展扩展到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()用户登录操作时。任何帮助都会挽救我的应用寿命。
请帮助我解决这个问题。