39

I want to implement Firebase into my .NET WPF Desktop Application. I can't find anything useful on the internet about this topic, it seems like it's completely unsupported. There is only a Xamarin NuGet package. Is there any possibility to do this? The goal is to implement Firebas Analytics for several actions the user makes in the app. I would even take the normal REST endpoints if I could find them - they are hidden somewhere...

The question is about Firebase Analytics, not Firebase Admin.

Christian Klemm
  • 1,455
  • 5
  • 28
  • 49
  • @Dominik it isn't as Firebase Admin is not Firebase Analytics. Plus, how can a question that is younger than the flagged one be a duplicate? – Christian Klemm May 28 '19 at 16:37
  • 1
    Sorry, Maksym Labutin's answer tricked me that is why I did not realize that you are asking about Firebase Analytics. – Dominik May 28 '19 at 21:12

4 Answers4

30

You can use existing C# REST libraries like FireSharp or FirebaseSharp or Firebase Database REST API because official libraries do not exist yet.

P.S. Firebase C# library

Neal_RSA
  • 64
  • 8
Taras Kovalenko
  • 2,323
  • 3
  • 24
  • 49
20

Google now provides an official .NET client: Google.Cloud.Firestore

For tips on getting started, see their official documentation.

Eric J.
  • 147,927
  • 63
  • 340
  • 553
8

Firebase also has it own library Firebase Admin SDK

nuget

Maksym Labutin
  • 561
  • 1
  • 8
  • 17
0

I use this fantastic library of firebase.

install via NuGet

Install-Package PushNotification_dotNET -Version 1.0.0

PushNotification_dotNET

Community
  • 1
  • 1