How to Upload File to Firebase Storage in .Net C# Windows Form?(如何以.Net C#Windows窗体将文件上载到Firebase存储?)
本文介绍了如何以.Net C#Windows窗体将文件上载到Firebase存储?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我尝试了以下函数将图像上载到Firebase存储
private async void UploadFiles()
{
var stream = File.Open(@"D:\Capture.png", FileMode.Open);
var auth = new FirebaseAuthProvider(new FirebaseConfig(ApiKey));
var a = await auth.SignInWithEmailAndPasswordAsync(AuthEmail, AuthPassword);
var cancellation = new CancellationTokenSource();
var task = new FirebaseStorage(
Bucket,
new FirebaseStorageOptions
{
AuthTokenAsyncFactory = () => Task.FromResult(a.FirebaseToken),
ThrowOnCancel = true // when you cancel the upload, exception is thrown. By default no exception is thrown
})
.Child("receipts")
// .Child("test")
.Child("Capture.png")
.PutAsync(stream, cancellation.Token);
task.Progress.ProgressChanged += (s, e) => textBox1 .Text =($"Progress: {e.Percentage} %");
// cancel the upload
// cancellation.Cancel();
try
{
// error during upload will be thrown when you await the task
textBox1 .Text =("Download link:
" + await task);
}
catch (Exception ex)
{
MessageBox .Show( ex.Message);
}
}
获取此错误:
处理请求时出现异常。 URL:https://firebasestorage.googleapis.com/v0/b/gs://testingsupport-44f0b.appspot.com//o?name=receipts%2FCapture.png 响应:{ "错误":{ "code":400, "message":"无效的HTTP方法/URL对。" } )
推荐答案
您必须编辑Bucket
变量。它应该仅为xxxxx.appspot.com
gs://xxxxx.appspot.com/
这篇关于如何以.Net C#Windows窗体将文件上载到Firebase存储?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何以.Net C#Windows窗体将文件上载到Firebase存储?


猜你喜欢
- 输入按键事件处理程序 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01