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