Firebase Admin .NET SDK Documentation

repository·main·Indexed 19 days ago

https://github.com/firebase/firebase-admin-dotnet

The Firebase Admin .NET SDK allows developers to interact with Firebase services from privileged, server-side environments. It currently provides support for Firebase custom authentication and is available via the FirebaseAdmin NuGet package. Supported frameworks include .NET Framework 4.6.2+, .NET Standard 2.0, and .NET 6.0+, with .NET 8.0 or higher recommended for deployment.

Tokens
276
Snippets
1
Records
3
Agent score
15%

What's inside Firebase Admin .NET SDK

  1. Install the Firebase Admin .NET SDK

    main

    The Firebase Admin .NET SDK is available via NuGet under the package name FirebaseAdmin. You can install it using either the NuGet Package Manager or the dotnet CLI.

    Note: Replace $VERSION with the specific version you wish to install.

    # Using NuGet Package Manager
    Install-Package FirebaseAdmin -Version $VERSION
    
    # Using dotnet CLI
    dotnet add package FirebaseAdmin --version $VERSION
  2. Supported Frameworks for Firebase Admin .NET SDK

    main

    The SDK supports the following .NET frameworks:

    • .NET Framework 4.6.2+
    • .NET Standard 2.0
    • .NET 6.0+ (Note: Support for .NET 6.0 and 7.0 is deprecated. It is highly recommended to use .NET 8.0 or higher for deployment, as the next major version will terminate support for 6.0 and 7.0.)