你们知道如何将PDF文件直接上传到firebase项目存储吗?我在互联网上搜索了很多,但我什么也没发现。
有一些C#库吗?还是有有关C#和Firebase的任何文件?
请帮助男人!谢谢
编辑:
好吧,我找到了一个库:firebasesharp。
https://github.com/bubbafat/firebasesharp
但是,此lib仅支持以前的firebase版本,并且也没有存储支持。
尝试firebasestorage.net库。
以下是示例用法:
// Get any Stream - it can be FileStream, MemoryStream or any other type of Stream
var stream = File.Open(@"C:Usersyoufile.png", FileMode.Open);
// Construct FirebaseStorage, path to where you want to upload the file and Put it there
var task = new FirebaseStorage("your-bucket.appspot.com")
.Child("data")
.Child("random")
.Child("file.png")
.PutAsync(stream);
// Track progress of the upload
task.Progress.ProgressChanged += (s, e) => Console.WriteLine($"Progress: {e.Percentage} %");
// await the task to wait until upload completes and get the download url
var downloadUrl = await task;
还有一个相关的博客文章。