1.0.2 • Published 3 years ago

hms_push_notification v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

hms-notification NPM version

A Node.JS simple interface to Haewei's Push Kit (HMS). Supports both android,web and iOS, including topic messages, and parallel calls.

Installation

Via npm:

$ npm i hms_push_notification

Guide

hms_push_notification allows you to use HTTPS to access its server and send uplink messages and downlink messages. This section describes the downlink messaging.

The following figure shows the HTTPS-based downlink messaging process.

alt text

Usage

var hmsService = require('hms_push_notification');

hmsService.sendPushNotification(
{
    "data": "{'param1':'value1','param2':'value2'}",
    "notification": {
        "title": "title",
        "body": "body"
    },
    "android": {
        "notification": {
            "title": "android title",
            "body": "android body",
            "click_action": {
                "type": 1,
                "intent": "intent://com.huawei.codelabpush/deeplink?#Intent;scheme=pushscheme;launchFlags=0x04000000;i.age=180;S.name=abc;end"
            }
        }
    },
    "token": [
        "IQAAAACy0htoAACfi7GvwXiTflj6vow-XJ4gsQYPBfqvy8mgYkLHMUwuPyKaeQgfXkIvS22A-mNj-gm1DxQFclXRH7Fvs2Lk1xKk0GBwdPxE7SGhbg"
    ]
}

License

Copyright (c) 2020-2021 Arunachalam kalimuthu

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.