Beispiel #1
0
        public MessageResult sendCustomMessageAll(String msgTitle, String msgContent)
        {
            CustomMessageParams customParams = new CustomMessageParams();

            customParams.ReceiverType = ReceiverTypeEnum.APP_KEY;
            return(_pushClient.sendCustomMessage(msgTitle, msgContent, customParams, null));
        }
Beispiel #2
0
 /// <summary>
 /// 发送自定义消息
 /// </summary>
 /// <param name="msgTitle"></param>
 /// <param name="msgContent"></param>
 /// <param name="customParams"></param>
 /// <param name="extras"></param>
 /// <returns></returns>
 public MessageResult sendCustomMessage(String msgTitle, String msgContent, CustomMessageParams customParams, String extras)
 {
     return(_pushClient.sendCustomMessage(msgTitle, msgContent, customParams, extras));
 }
Beispiel #3
0
        static void Main(string[] args)
        {
            Console.WriteLine("************");
            Console.WriteLine("*****开始发送******");

            //String result;
            String app_key       = "_";
            String master_secret = "_";
            //int sendno = 9;

            HashSet <DeviceEnum> set = new HashSet <DeviceEnum>();

            set.Add(DeviceEnum.Android);
            set.Add(DeviceEnum.IOS);
            JPushClient client = new JPushClient(app_key, master_secret, 0, set, true);

            MessageResult result = null;

            NotificationParams  notifyParams = new NotificationParams();
            CustomMessageParams customParams = new CustomMessageParams();

            //notifyParams.

            //传入json字符串


            String extras = null;


            extras = "{\"ios\":{\"badge\":88, \"sound\":\"happy\"}}";


            //extras中有中文请用HttpUtility.UrlEncode编码
            //System.Web.HttpUtility.UrlEncode(notificationContent, Encoding.UTF8);

            Console.WriteLine("*****发送带tag通知******");

            /**
             *发送类型
             * APP_KEY      通知
             * TAG           TAG
             * ALIAS       ALIAS
             * REGISTRATION_ID  REGISTRATION_ID
             */
            notifyParams.ReceiverType = ReceiverTypeEnum.APP_KEY;

            notifyParams.SendNo = 256;
            //notifyParams.OverrideMsgId = "1";

            result = client.sendNotification("酷派tag111111", notifyParams, extras);
            Console.WriteLine("sendNotification by tag:**返回状态:" + result.getErrorCode().ToString() +
                              "  **返回信息:" + result.getErrorMessage() +
                              "  **Send No.:" + result.getSendNo() +
                              "  msg_id:" + result.getMessageId() +
                              "  频率次数:" + result.getRateLimitQuota() +
                              "  可用频率:" + result.getRateLimitRemaining() +
                              "  重置时间:" + result.getRateLimitReset());



            Console.WriteLine("*****发送带tag消息******");

            //customParams.addPlatform(DeviceEnum.Android);
            customParams.ReceiverType  = ReceiverTypeEnum.TAG;
            customParams.ReceiverValue = "tag_api";

            customParams.SendNo = 256;
            result = client.sendCustomMessage("send custom mess by tag", "tag notify content", customParams, extras);
            Console.WriteLine("sendCustomMessage:**返回状态:" + result.getErrorCode().ToString() +
                              "  **返回信息:" + result.getErrorMessage() +
                              "  **Send No.:" + result.getSendNo() +
                              "  msg_id:" + result.getMessageId() +
                              "  频率次数:" + result.getRateLimitQuota() +
                              "  可用频率:" + result.getRateLimitRemaining() +
                              "  重置时间:" + result.getRateLimitReset());


            Console.WriteLine();

            String         msg_ids        = "1613113584,1229760629,1174658841,1174658641";
            ReceivedResult receivedResult = client.getReceivedApi(msg_ids);

            Console.WriteLine("Report Result:");
            foreach (ReceivedResult.Received re in receivedResult.ReceivedList)
            {
                Console.WriteLine("getReceivedApi************msgid=" + re.msg_id + "  ***andriod received=" + re.android_received + " ***ios received=" + re.ios_apns_sent);
            }
            Console.WriteLine();
        }