Firebaseのクラウド機能でカスタムストレージメタデータを取得することは可能ですか? は、例えばAndroidのコードで:Firebaseのクラウド機能でストレージメタデータを取得
StorageMetadata metadata = new StorageMetadata.Builder().setContentType("image/jpg")
.setCustomMetadata("latitude",String.valueOf(image.latitude))
.setCustomMetadata("longitude",String.valueOf(image.longitude))
.setCustomMetadata("deviceID",image.deviceID)
.setCustomMetadata("userID",image.userID)
.setCustomMetadata("deviceFilePath",image.filename)
.setCustomMetadata("timestamp",String.valueOf(image.timestamp))
.setCustomMetadata("caption",image.caption)
.setCustomMetadata("location",image.location)
.setCustomMetadata("imageID",key)
.build();
私は確かに、クラウド機能に
は、あなたがそれを行う方法を任意の例を持っていますでしょうか? –
便利なことはありませんが、APIドキュメントは非常に簡単なので、実験することができます。 –