leancloudPushForNode
如何安装/how to install
npm install git://github.com/harryyuanfeng/leancloudPushForNode
如何使用
var AV = require('avoscloud-sdk');
var push = require('leancloudpush').push(AV);
//console.log(push.fiz(AV));
var appId = '4kjjc24stkt8sqkct758vc7jvv16n41m95x7n3pqcb35qtey';//换成你的appid
var appKey = 'vxc8wtjtyfs0a9gvhwot1d9g96s9q2y5dxrebqov1n23g0bf';
//换成你的appkey,在设置里面可以找到
var push = AV.push({
appId: appId,
appKey: appKey
});
// 发送一条推送,如果不传 channels 则是给所有 channel 发送消息
push.send({
// channels: ['aaa'],
data: {LeanCloud: 123}
}, function(result) {
if (result) {
console.log('推送成功发送');
} else {
console.log('error');
}
});