UNPKG

huawei-push

Version:
18 lines (13 loc) 381 B
var HwPush = require('../lib'); var Message = HwPush.Message; var Notification = HwPush.Notification; var config = require('./config'); var msg = new Message(); msg .title('title example') .content('description example'); var notification = new Notification({ appId: config.appId, appSecret: config.appSecret }); notification.send(config.tokens, msg, config.callback);