{"id":20621058,"url":"https://github.com/rageagainstthepixel/com.rest.firebase.authentication","last_synced_at":"2025-06-16T03:10:46.594Z","repository":{"id":40263159,"uuid":"376967200","full_name":"RageAgainstThePixel/com.rest.firebase.authentication","owner":"RageAgainstThePixel","description":"A non-official Firebase RESTful Authentication Client for Unity (UPM)","archived":false,"fork":false,"pushed_at":"2024-04-28T05:25:09.000Z","size":363,"stargazers_count":4,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-15T12:14:29.774Z","etag":null,"topics":["firebase","firebase-auth","firebase-authentication","openupm","unity","unity-asset","unity-scripts","unity3d","unity3d-plugin","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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null},"funding":{"github":"StephenHodgson","patreon":"RageAgainstThePixel"}},"created_at":"2021-06-14T22:03:57.000Z","updated_at":"2024-04-28T05:24:22.000Z","dependencies_parsed_at":"2024-04-04T20:24:34.562Z","dependency_job_id":"e9c7df83-6345-4dac-bfc6-a8c552355adb","html_url":"https://github.com/RageAgainstThePixel/com.rest.firebase.authentication","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":"RageAgainstThePixel/upm-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RageAgainstThePixel%2Fcom.rest.firebase.authentication","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RageAgainstThePixel%2Fcom.rest.firebase.authentication/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RageAgainstThePixel%2Fcom.rest.firebase.authentication/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RageAgainstThePixel%2Fcom.rest.firebase.authentication/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RageAgainstThePixel","download_url":"https://codeload.github.com/RageAgainstThePixel/com.rest.firebase.authentication/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":["firebase","firebase-auth","firebase-authentication","openupm","unity","unity-asset","unity-scripts","unity3d","unity3d-plugin","upm","upm-package"],"created_at":"2024-11-16T12:16:31.378Z","updated_at":"2025-04-15T12:14:37.691Z","avatar_url":"https://github.com/RageAgainstThePixel.png","language":"C#","funding_links":["https://github.com/sponsors/StephenHodgson","https://patreon.com/RageAgainstThePixel"],"categories":[],"sub_categories":[],"readme":"# Firebase.Authentication\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.authentication?label=openupm\u0026registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.rest.firebase.authentication/)\n\nA non-official [Firebase](https://firebase.google.com/) RESTful Authentication Client for the [Unity](https://unity.com/) Game Engine.\n\nBased on [FirebaseAuthentication.net](https://github.com/step-up-labs/firebase-authentication-dotnet)\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.Authentication/Packages/com.rest.firebase.authentication/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.Authentication` 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.authentication.git#upm`\n  \u003e Note: this repo has dependencies on other repositories! You are responsible for adding these on your own.\n  - [com.utilities.async](https://github.com/RageAgainstThePixel/com.utilities.async)\n\n---\n\n## Documentation\n\n### Project Setup\n\nBy default the `FirebaseAuthenticationClient` will attempt to load the `FirebaseConfigurationSettings.asset` scriptable object asset if one exists.\n\nIf no `FirebaseConfigurationSettings.asset` can be found then the client will attempt to load te `google-services.json` file in the local project folder.\n\nLast, it will attempt to load the environment variable `FIREBASE_CONFIGURATION` which should point to a `google-services.json` path.\n\nAlternatively, you can also explicitly specify an api key and auth domain when creating the client:\n\n```csharp\nvar firebaseClient = new FirebaseAuthenticationClient(\"apiKey\", \"hello.firebase.com\");\n\nFirebaseUser firebaseUser;\n\ntry\n{\n    firebaseUser = await firebaseClient.SignInWithEmailAndPasswordAsync(\"username\", \"password\");\n}\ncatch (Exception e)\n{\n    Debug.LogError(e);\n    return;\n}\n\nDebug.Log($\"Signed in as {firebaseUser.Info.DisplayName}\");\n\nfirebaseClient.SignOut();\n```\n\n## Additional Packages\n\n- [Firebase.Storage](https://github.com/RageAgainstThePixel/com.rest.firebase.storage)\n- [Firebase.Firestore](https://github.com/RageAgainstThePixel/com.rest.firebase.firestore)\n- [Firebase.Realtime-Database](https://github.com/RageAgainstThePixel/com.rest.firebase.realtime-database)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frageagainstthepixel%2Fcom.rest.firebase.authentication","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frageagainstthepixel%2Fcom.rest.firebase.authentication","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frageagainstthepixel%2Fcom.rest.firebase.authentication/lists"}