其他分享
首页 > 其他分享> > Smobiler-极光推送

Smobiler-极光推送

作者:互联网

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);

标签:Smobiler,cn,MasterSecret,极光,client,推送
来源: https://blog.csdn.net/zyx2050/article/details/115294524