web-dev-qa-db-fra.com

metadata.downloadURL () n'est plus reconnu?

Je viens de mettre à jour Firebase Storage à 5.0.0 et il semble que metadata.downloadURL() ne soit plus reconnu. (Value of type 'StorageMetadata' has no member 'downloadURL')

Cependant, après avoir consulté la documentation, elle devrait toujours être disponible: 

https://firebase.google.com/docs/reference/Swift/firebasestorage/api/reference/Classes/StorageMetadata#/c:objc(cs)FIRStorageMetadata(im)downloadURL

Le projet a déjà été nettoyé et reconstruit. 

Est-ce que je manque quelque chose? 

4
vbuzze

Peux-tu essayer

// Create a reference to the file you want to download
let starsRef = storageRef.child("images/stars.jpg")

// Fetch the download URL
starsRef.downloadURL { url, error in
  if let error = error {
    // Handle any errors
  } else {
    // Get the download URL for 'images/stars.jpg'
  }
}
10
Sh_Khan

Ceci est ma version pour Swift 3/Swift 4.

Explication de ce qui se passe dans le code.

C'est essentiellement la même réponse que celle de Sh_Khan. Mais dans son exemple, l'utilisateur connaît déjà le chemin du compartiment. Dans mon exemple, nous obtenons le chemin d’une tâche de téléchargement. C’est ce qui m’a amené à cette question ainsi que ce que je pensais être recherché par op, car il cherchait un remplaçant de metadata.downloadURL().

class StorageManagager {


    private let storageReference: StorageReference

    init() {

        // first we create a reference to our storage
        // replace the URL with your firebase URL
        self.storageReference = Storage.storage().reference(forURL: "gs://MYAPP.appspot.com")
    }

    // MARK: - UPLOAD DATA
    open func uploadData(_ data: Data, named filename: String, completion: @escaping (URL? , Error?) -> Void) {

        let reference = self.storageReference.child(filename)
        let metadata = StorageMetadata()
        metadata.contentType = "ourType" // in my example this was "PDF"

        // we create an upload task using our reference and upload the 
        // data using the metadata object
        let uploadTask = reference.putData(data, metadata: metadata) { metadata, error in

            // first we check if the error is nil
            if let error = error {

                completion(nil, error)
                return
            }

            // then we check if the metadata and path exists
            // if the error was nil, we expect the metadata and path to exist
            // therefore if not, we return an error
            guard let metadata = metadata, let path = metadata.path else {
                completion(nil, NSError(domain: "core", code: 0, userInfo: [NSLocalizedDescriptionKey: "Unexpected error. Path is nil."]))
                return
            }

            // now we get the download url using the path
            // and the basic reference object (without child paths)
            self.getDownloadURL(from: path, completion: completion)
        }

        // further we are able to use the uploadTask for example to 
        // to get the progress
    }

    // MARK: - GET DOWNLOAD URL
    private func getDownloadURL(from path: String, completion: @escaping (URL?, Error?) -> Void) {

        self.storageReference.child(path).downloadURL(completion: completion)
    }

}
4
David Seek

Essayons ce code dans Swift 4.2:

let imgData = UIImage.jpegData(self.imageView.image!)

let imageName = UUID().uuidString
let ref = Storage.storage().reference().child("pictures/\(imageName).jpg")
let meta = StorageMetadata()
meta.contentType = "image/jpeg"

self.uploadToCloud(data: imgData(0.5)!, ref: ref, meta: meta)

Méthode UploadToCloud:

` Method UploadToCloud
func uploadToCloud(data:Data, ref:StorageReference, meta:StorageMetadata) {
    ref.putData(data, metadata: meta) { (metaData, error) in
        if let e = error {
            print("==> error: \(e.localizedDescription)")
        }
        else 
        {
            ref.downloadURL(completion: { (url, error) in
                print("Image URL: \((url?.absoluteString)!)")
            })
        }
    }
}
2
Soeng Saravit

Cette question apparaît pour toutes les recherches linguistiques. Par conséquent, pour Kotlin, la solution proposée est la suivante:

val photoRef = FirebaseStorage.getInstance()
                .reference.child("images/stars.jpg")

// Code ommited - Do some saving - putFile

    photoRef.downloadUrl.addOnSuccessListener({ uri ->
                         product.imageUrl = uri.toString()
                     })

Cependant, ce n'est pas une bonne solution. Vous feriez mieux de sauvegarder le chemin puis de reconstruire l’URL complète à la demande. Par exemple:

photoRef.downloadUrl.addOnSuccessListener({ uri ->  
            val imagePath = uri.toString()
            // Save to database
        })

Maintenant, vous pouvez l'utiliser plus tard, et uniquement à la demande:

FirebaseStorage.getInstance().reference.child(product.imageUrl).downloadUrl
                    .addOnSuccessListener { uri ->
                        String imageUrl = uri.toString()
                        // Load in images
                    }
1
Rowland Mtetezi