{"id":37476361,"url":"https://github.com/step-up-labs/firebase-storage-dotnet","last_synced_at":"2026-01-16T07:22:04.848Z","repository":{"id":15284757,"uuid":"77792296","full_name":"step-up-labs/firebase-storage-dotnet","owner":"step-up-labs","description":" C# library for Firebase Storage","archived":false,"fork":false,"pushed_at":"2023-06-18T08:25:52.000Z","size":264,"stargazers_count":141,"open_issues_count":9,"forks_count":34,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-09-28T18:21:19.365Z","etag":null,"topics":["firebase","firebase-auth","firebase-database","firebase-storage","gcloud"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/step-up-labs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-01T19:00:14.000Z","updated_at":"2025-06-11T19:16:19.000Z","dependencies_parsed_at":"2023-01-13T18:20:57.040Z","dependency_job_id":null,"html_url":"https://github.com/step-up-labs/firebase-storage-dotnet","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/step-up-labs/firebase-storage-dotnet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/step-up-labs%2Ffirebase-storage-dotnet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/step-up-labs%2Ffirebase-storage-dotnet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/step-up-labs%2Ffirebase-storage-dotnet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/step-up-labs%2Ffirebase-storage-dotnet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/step-up-labs","download_url":"https://codeload.github.com/step-up-labs/firebase-storage-dotnet/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/step-up-labs%2Ffirebase-storage-dotnet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28478047,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T06:30:42.265Z","status":"ssl_error","status_checked_at":"2026-01-16T06:30:16.248Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["firebase","firebase-auth","firebase-database","firebase-storage","gcloud"],"created_at":"2026-01-16T07:22:04.199Z","updated_at":"2026-01-16T07:22:04.831Z","avatar_url":"https://github.com/step-up-labs.png","language":"C#","readme":"# FirebaseStorage.net\n[![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/o8hpwxrgfyhu527b?svg=true)](https://ci.appveyor.com/project/bezysoftware/firebase-storage-dotnet)\n\nEasily upload files and other content to Firebase Storage. More info in a [blog post](https://medium.com/step-up-labs/firebase-storage-c-library-d1656cc8b3c3)\n\nFor Authenticating with Firebase checkout the [Firebase Authentication library](https://github.com/step-up-labs/firebase-authentication-dotnet) and related [blog post](https://medium.com/step-up-labs/firebase-authentication-c-library-8e5e1c30acc2)\n\n## Installation\n```csharp\n// Install release version\nInstall-Package FirebaseStorage.net -pre\n```\n\n## Supported frameworks\n.NET Standard 1.1 - see https://github.com/dotnet/standard/blob/master/docs/versions.md for compatibility matrix\n\n## Usage\n\n```csharp\n// Get any Stream - it can be FileStream, MemoryStream or any other type of Stream\nvar stream = File.Open(@\"C:\\Users\\you\\file.png\", FileMode.Open);\n\n//authentication\nvar auth = new FirebaseAuthProvider(new FirebaseConfig(\"api_key\"));\nvar a = await auth.SignInWithEmailAndPasswordAsync(\"email\", \"password\");\n\n// Constructr FirebaseStorage, path to where you want to upload the file and Put it there\nvar task = new FirebaseStorage(\n    \"your-bucket.appspot.com\"\n     new FirebaseStorageOptions\n     {\n         AuthTokenAsyncFactory = () =\u003e Task.FromResult(a.FirebaseToken),\n         ThrowOnCancel = true,\n     })\n    .Child(\"data\")\n    .Child(\"random\")\n    .Child(\"file.png\")\n    .PutAsync(stream);\n\n// Track progress of the upload\ntask.Progress.ProgressChanged += (s, e) =\u003e Console.WriteLine($\"Progress: {e.Percentage} %\");\n\n// await the task to wait until upload completes and get the download url\nvar downloadUrl = await task;\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstep-up-labs%2Ffirebase-storage-dotnet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstep-up-labs%2Ffirebase-storage-dotnet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstep-up-labs%2Ffirebase-storage-dotnet/lists"}