Exemplo n.º 1
0
        /// <summary>
        /// 发送消息
        /// </summary>
        /// <param name="msg">消息</param>
        /// <param name="appKey">appkey</param>
        /// <param name="masterSecret">主密钥</param>
        private static void sendAndroidMsgToUsers(PushMsgModel msg, List <PushStaff> userDics, string appKey = "a91410f29fd95fe5800fff9a", string masterSecret = "2bd0c5a1418c05f97ae9048a")
        {
            JPushClient client      = new JPushClient(appKey, masterSecret);
            PushPayload pushPayload = new PushPayload();

            pushPayload.platform = Platform.android();

            foreach (PushStaff item in userDics)
            {
                pushPayload.audience             = Audience.s_alias(item.UserName);
                pushPayload.options.time_to_live = 30;

                if (item.IsPushVoice)
                {
                    msg.IsPushVoice     = true;
                    pushPayload.message = Message.content(SerializationHelper.JsonSerialize(msg));
                }
                else
                {
                    msg.IsPushVoice     = false;
                    pushPayload.message = Message.content(SerializationHelper.JsonSerialize(msg));
                }

                try
                {
                    var result = client.SendPush(pushPayload);
                }
                catch (Exception ex)
                {
                }
            }
        }
Exemplo n.º 2
0
        /// <summary>
        /// 发送通知(s_tag 定位,ios)
        /// </summary>
        /// <param name="msg">消息</param>
        /// <param name="appKey">appkey</param>
        /// <param name="masterSecret">主密钥</param>
        private static void sendIosNotificToUsers(PushMsgModel extra, List <PushStaff> userDics, string appKey = "a91410f29fd95fe5800fff9a", string masterSecret = "2bd0c5a1418c05f97ae9048a")
        {
            if (userDics.Count <= 0)
            {
                return;
            }

            string      extraData   = SerializationHelper.JsonSerialize(extra);
            JPushClient client      = new JPushClient(appKey, masterSecret);
            PushPayload pushPayload = new PushPayload();

            pushPayload.platform = Platform.ios();

            foreach (PushStaff item in userDics)
            {
                pushPayload.audience = Audience.s_alias(item.UserName);
                pushPayload.options.apns_production = true;
                if (item.IsReceivePush)
                {
                    if (item.IsPushVoice)
                    {
                        pushPayload.notification = new Notification().setAlert(extra.MessageTitle).setIos(new IosNotification().autoBadge().setSound("newworkorder.wav").AddExtra("extra", extraData));
                    }
                    else
                    {
                        pushPayload.notification = new Notification().setAlert(extra.MessageTitle).setIos(new IosNotification().autoBadge().setSound("happy").AddExtra("extra", extraData));
                    }

                    try
                    {
                        var result = client.SendPush(pushPayload);
                    }
                    catch (Exception ex)
                    {
                    }
                }
            }
        }
Exemplo n.º 3
0
 /// <summary>
 /// 推送消息
 /// </summary>
 /// <param name="extra">推送实体</param>
 /// <param name="userDics">用户集合</param>
 public static void sendMsgToUsers(PushMsgModel extra, List <PushStaff> userDics)
 {
     sendIosNotificToUsers(extra, userDics);
     sendAndroidMsgToUsers(extra, userDics);
 }