GithubHelp home page GithubHelp logo

fcmclient's Introduction

Firebase Messaging Client for C#

This is a C# library to send messages via FCM directly to known device tokens. If this doesn't make sense to you, this library is not for you.

Usage

Install nuget package

Install-Package FcmSharpClient -Version 1.0.1

To use the FcmClient you require the FCM Api-Key, which you can get from your Firebase console: https://console.firebase.google.com/project/(your-project-id)/settings/cloudmessaging

You will also need to create an HttpClient and manage its lifecycle by yourself.

    var httpClient = new HttpClient();
    var fcmConfiguration = new FcmConfiguration("YOUR-API-KEY");
    var fcmClient = new FcmClient(fcmConfiguration, httpClient);

With the FcmClient ready you can now send a message directly to one or more known device tokens.

    try {
      var result = await fcmClient.Send(new string[]{ "fcm_token" },
        "displayed title", "displayed message", // both visible when the app receives the push message
        new { key = "value" } // an optional json serializable object that can be processed by your app
      );
      foreach (var failedToken in result.FailedSends) {
        // clean up failed tokens
      }
    }
    catch (FcmSendException) {
      // can and will occur for invalid api keys or failed http connections
    }

fcmclient's People

Contributors

senorincognito avatar burgua avatar confluentescode avatar

Stargazers

Philipp Manstein avatar  avatar  avatar

Watchers

weichuan shi avatar James Cloos avatar  avatar

Forkers

ulieckstein

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.