{"id":20621053,"url":"https://github.com/rageagainstthepixel/com.rest.firebase.realtime-database","last_synced_at":"2025-09-04T09:45:08.271Z","repository":{"id":40263155,"uuid":"377878813","full_name":"RageAgainstThePixel/com.rest.firebase.realtime-database","owner":"RageAgainstThePixel","description":"A non-official Firebase RESTful Realtime-Database Client for Unity (UPM)","archived":false,"fork":false,"pushed_at":"2023-03-19T06:34:37.000Z","size":261,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-15T12:14:22.411Z","etag":null,"topics":["database","firebase","firebase-realtime-database","openupm","realtime-database","unity","unity-3d","unity3d","upm","upm-package"],"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/RageAgainstThePixel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":"StephenHodgson"}},"created_at":"2021-06-17T15:30:34.000Z","updated_at":"2024-10-26T01:49:54.000Z","dependencies_parsed_at":"2023-02-11T00:40:12.290Z","dependency_job_id":null,"html_url":"https://github.com/RageAgainstThePixel/com.rest.firebase.realtime-database","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":"RageAgainstThePixel/upm-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RageAgainstThePixel%2Fcom.rest.firebase.realtime-database","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RageAgainstThePixel%2Fcom.rest.firebase.realtime-database/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RageAgainstThePixel%2Fcom.rest.firebase.realtime-database/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RageAgainstThePixel%2Fcom.rest.firebase.realtime-database/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RageAgainstThePixel","download_url":"https://codeload.github.com/RageAgainstThePixel/com.rest.firebase.realtime-database/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249067779,"owners_count":21207396,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["database","firebase","firebase-realtime-database","openupm","realtime-database","unity","unity-3d","unity3d","upm","upm-package"],"created_at":"2024-11-16T12:16:30.962Z","updated_at":"2025-04-15T12:14:31.306Z","avatar_url":"https://github.com/RageAgainstThePixel.png","language":"C#","funding_links":["https://github.com/sponsors/StephenHodgson"],"categories":[],"sub_categories":[],"readme":"# Firebase.Realtime-Database\n\nA non-official [Firebase](https://firebase.google.com/) RESTful Realtime-Database Client for the [Unity](https://unity.com/) Game Engine.\n\n[![Discord](https://img.shields.io/discord/855294214065487932.svg?label=\u0026logo=discord\u0026logoColor=ffffff\u0026color=7389D8\u0026labelColor=6A7EC2)](https://discord.gg/xQgMW9ufN4)\n[![openupm](https://img.shields.io/npm/v/com.rest.firebase.realtime-database?label=openupm\u0026registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.rest.firebase.realtime-database/)\n\n***All copyrights, trademarks, logos, and assets are the property of their respective owners.***\n\n## Installing\n\n### Via Unity Package Manager and OpenUPM\n\n- Open your Unity project settings\n- Add the OpenUPM package registry:\n  - `Name: OpenUPM`\n  - `URL: https://package.openupm.com`\n  - `Scope(s):`\n    - `com.rest.firebase`\n    - `com.utilities`\n\n![scoped-registries](Firebase.Realtime-Database/Packages/com.rest.firebase.realtime-database/Documentation~/images/package-manager-scopes.png)\n\n- Open the Unity Package Manager window\n- Change the Registry from Unity to `My Registries`\n- Add the `Firebase.Realtime-Database` package\n\n### Via Unity Package Manager and Git url\n\n- Open your Unity Package Manager\n- Add package from git url: `https://github.com/RageAgainstThePixel/com.rest.firebase.realtime-database.git#upm`\n  \u003e Note: this repo has dependencies on other repositories! You are responsible for adding these on your own.\n  - [com.rest.firebase.authentication](https://github.com/RageAgainstThePixel/com.rest.firebase.authentication)\n  - [com.utilities.async](https://github.com/RageAgainstThePixel/com.utilities.async)\n\n---\n\n## Documentation\n\n```csharp\n// Create a firebase authentication client\nvar authClient = new FirebaseAuthenticationClient();\n\n// Create a firebase storage client\nvar dbClient = new FirebaseRealtimeDatabaseClient(authClient);\n\n// Sign the user in\nawait authClient.SignInWithEmailAndPasswordAsync(email, password);\n\n// Sets json data at the specified endpoint.\nawait dbClient.SetDataSnapshotAsync(\"test\", \"{\\\"value\\\":42}\");\n\n// Gets json data at the specified endpoint.\nvar snapshotValue = await dbClient.GetDataSnapshotAsync(\"test\");\n// snapshotValue == {\"value\":42}\n\n// Deletes data at the specified endpoint.\nawait dbClient.DeleteDataSnapshotAsync(\"test\");\n```\n\n## Additional Packages\n\n- [Firebase.Authentication](https://github.com/RageAgainstThePixel/com.rest.firebase.authentication)\n- [Firebase.Firestore](https://github.com/RageAgainstThePixel/com.rest.firebase.firestore)\n- [Firebase.Storage](https://github.com/RageAgainstThePixel/com.rest.firebase.storage)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frageagainstthepixel%2Fcom.rest.firebase.realtime-database","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frageagainstthepixel%2Fcom.rest.firebase.realtime-database","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frageagainstthepixel%2Fcom.rest.firebase.realtime-database/lists"}