Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 491 Bytes

README.md

File metadata and controls

21 lines (19 loc) · 491 Bytes

Fcm.NET

Firebase Cloud Messaging (Fcm) API with .NET

Installation

dotnet add package Fcm --version 1.2.0

Usage

namespace Fcm {
    internal class Program {
        static void Main(string[] args) {
            var fcm = new Fcm();
            fcm.SetProjectId("project id");
            fcm.SetApiKey("api key");
            fcm.Send(new() { Message = new() { Token = "device id", Notification = new() { Title = "title", Body = "body" } } });
        }
    }
}