为了账号安全,请及时绑定邮箱和手机立即绑定

如何在 .Net C# Windows 窗体中将文件上传到 Firebase 存储?

如何在 .Net C# Windows 窗体中将文件上传到 Firebase 存储?

C#
芜湖不芜 2022-08-20 16:19:54
我尝试了以下功能将图像上传到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:\n" + 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 响应: { “error”: { “code”: 400, “message”: “Invalid HTTP method/URL pair.” } }
查看完整描述

1 回答

?
白衣染霜花

TA贡献1796条经验 获得超10个赞

您必须编辑变量。而不是使用它应该只是Bucketgs://xxxxx.appspot.com/xxxxx.appspot.com



查看完整回答
反对 回复 2022-08-20
  • 1 回答
  • 0 关注
  • 77 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信