Smobiler 极光推送
极光推送官网https://www.jiguang.cn/accounts/login/form注册账号,建立应用,设置推送参数。
程序实现:
1、下载Smobiler.Utility.JPush.dll,并添加到项目引用
2、后台增加引用
using Smobiler.Utility.JPush;
using cn.jpush.api.push;
3、定义PushClient client 推送对象,参数分别为极光应用的AppKey和 MasterSecret
client = new PushClient(AppKey, MasterSecret);
4、增加定时器或者线程,定时推送消息
MessageResult result = client.PushAlert("报警内容", "报警标题", alias);