关于ios极光推送server端注意的地方

时间:2022-09-27 23:39:33

今天试用了极光推送API

用它是因为,大多数人说它的文档是最全的,但是用过之后,发现关于IOS的文档,还是很不够,导致走了一点弯路!

特别是服务端的代码:https://github.com/jpush/jpush-api-java-client  for java

  1. JPushClient jpushClient = new JPushClient(masterSecret, appKey, 0, DeviceEnum.Android, false);
  2. CustomMessageParams params = new CustomMessageParams();
  3. params.setReceiverType(ReceiverTypeEnum.TAG);
  4. params.setReceiverValue(tag);
  5. MessageResult msgResult = jpushClient.sendCustomMessage(msgTitle, msgContent, params, null);
  6. LOG.debug("responseContent - " + msgResult.responseResult.responseContent);
  7. if (msgResult.isResultOK()) {
  8. LOG.info("msgResult - " + msgResult);
  9. LOG.info("messageId - " + msgResult.getMessageId());
  10. } else {
  11. if (msgResult.getErrorCode() > 0) {
  12. // 业务异常
  13. LOG.warn("Service error - ErrorCode: "
  14. + msgResult.getErrorCode() + ", ErrorMessage: "
  15. + msgResult.getErrorMessage());
  16. } else {
  17. // 未到达 JPush
  18. LOG.error("Other excepitons - "
  19. + msgResult.responseResult.exceptionString);
  20. }
  21. }
JPushClient jpushClient = new JPushClient(masterSecret, appKey, 0, DeviceEnum.Android, false);
CustomMessageParams params = new CustomMessageParams();
params.setReceiverType(ReceiverTypeEnum.TAG);
params.setReceiverValue(tag); MessageResult msgResult = jpushClient.sendCustomMessage(msgTitle, msgContent, params, null);
LOG.debug("responseContent - " + msgResult.responseResult.responseContent);
if (msgResult.isResultOK()) {
LOG.info("msgResult - " + msgResult);
LOG.info("messageId - " + msgResult.getMessageId());
} else {
if (msgResult.getErrorCode() > 0) {
// 业务异常
LOG.warn("Service error - ErrorCode: "
+ msgResult.getErrorCode() + ", ErrorMessage: "
+ msgResult.getErrorMessage());
} else {
// 未到达 JPush
LOG.error("Other excepitons - "
+ msgResult.responseResult.exceptionString);
}
}

这是它的推送案例,只有android的,没有IOS的!

附送ios的代码:

后来发现IOS完全不能试用sendCustomMessage这个方法.

  1. /**
  2. *
  3. */
  4. package org.haoyi.push;
  5. import java.util.HashMap;
  6. import java.util.Map;
  7. import org.apache.log4j.Logger;
  8. import cn.jpush.api.JPushClient;
  9. import cn.jpush.api.common.DeviceEnum;
  10. import cn.jpush.api.push.IosExtras;
  11. import cn.jpush.api.push.MessageResult;
  12. import cn.jpush.api.push.NotificationParams;
  13. import cn.jpush.api.push.ReceiverTypeEnum;
  14. /**
  15. * @author zfanxu
  16. *
  17. */
  18. public class PushDemo {
  19. public static final int MAX = Integer.MAX_VALUE / 2;
  20. public static final int MIN = MAX / 2;
  21. private static Logger LOG = Logger.getLogger(PushDemo.class);
  22. public static void main(String[] args) {
  23. JPushClient jpushClient = new JPushClient(Config.JPUSH_MASTER_SECRET,
  24. Config.JPUSH_APPKEY, 0, DeviceEnum.IOS, false);
  25. for (int i = 0; i < 1; i++) {
  26. String notificationContent = "show me your money!";
  27. NotificationParams param = new NotificationParams();
  28. param.setSendNo(getRandomSendNo());
  29. param.setReceiverType(ReceiverTypeEnum.REGISTRATION_ID);
  30. param.setReceiverValue("071f06f8c18");
  31. Map<String, Object> extras = new HashMap<String, Object>();
  32. IosExtras iosExtra = new IosExtras(1, "message.wav");// badge
  33. // set badge and sound
  34. extras.put("ios", iosExtra);
  35. MessageResult msgResult = jpushClient.sendNotification(
  36. notificationContent, param, extras);
  37. if (msgResult.isResultOK()) {
  38. LOG.info("msgResult - " + msgResult);
  39. LOG.info("messageId - " + msgResult.getMessageId());
  40. } else {
  41. if (msgResult.getErrorCode() > 0) {
  42. // 业务异常
  43. LOG.warn("Service error - ErrorCode: "
  44. + msgResult.getErrorCode() + ", ErrorMessage: "
  45. + msgResult.getErrorMessage());
  46. } else {
  47. // 未到达 JPush
  48. LOG.error("Other excepitons - "
  49. + msgResult.responseResult.exceptionString);
  50. }
  51. }
  52. }
  53. }
  54. /**
  55. * 保持 sendNo 的唯一性是有必要的 It is very important to keep sendNo unique.
  56. *
  57. * @return sendNo
  58. */
  59. public static int getRandomSendNo() {
  60. return (int) (MIN + Math.random() * (MAX - MIN));
  61. }
  62. }
/**
*
*/
package org.haoyi.push; import java.util.HashMap;
import java.util.Map; import org.apache.log4j.Logger; import cn.jpush.api.JPushClient;
import cn.jpush.api.common.DeviceEnum;
import cn.jpush.api.push.IosExtras;
import cn.jpush.api.push.MessageResult;
import cn.jpush.api.push.NotificationParams;
import cn.jpush.api.push.ReceiverTypeEnum; /**
* @author zfanxu
*
*/
public class PushDemo {
public static final int MAX = Integer.MAX_VALUE / 2;
public static final int MIN = MAX / 2;
private static Logger LOG = Logger.getLogger(PushDemo.class); public static void main(String[] args) { JPushClient jpushClient = new JPushClient(Config.JPUSH_MASTER_SECRET,
Config.JPUSH_APPKEY, 0, DeviceEnum.IOS, false); for (int i = 0; i < 1; i++) {
String notificationContent = "show me your money!";
NotificationParams param = new NotificationParams();
param.setSendNo(getRandomSendNo());
param.setReceiverType(ReceiverTypeEnum.REGISTRATION_ID);
param.setReceiverValue("071f06f8c18"); Map<String, Object> extras = new HashMap<String, Object>();
IosExtras iosExtra = new IosExtras(1, "message.wav");// badge
// set badge and sound
extras.put("ios", iosExtra); MessageResult msgResult = jpushClient.sendNotification(
notificationContent, param, extras); if (msgResult.isResultOK()) {
LOG.info("msgResult - " + msgResult);
LOG.info("messageId - " + msgResult.getMessageId());
} else {
if (msgResult.getErrorCode() > 0) {
// 业务异常
LOG.warn("Service error - ErrorCode: "
+ msgResult.getErrorCode() + ", ErrorMessage: "
+ msgResult.getErrorMessage());
} else {
// 未到达 JPush
LOG.error("Other excepitons - "
+ msgResult.responseResult.exceptionString);
}
} }
} /**
* 保持 sendNo 的唯一性是有必要的 It is very important to keep sendNo unique.
*
* @return sendNo
*/
public static int getRandomSendNo() {
return (int) (MIN + Math.random() * (MAX - MIN));
}
}

先挖个坑,下班后,再填满!

关于ios极光推送server端注意的地方的更多相关文章

  1. &lpar;转载&rpar;iOS 极光推送SDK 集成指南

    iOS SDK 集成指南 使用提示 本文匹配的 SDK版本:r1.2.5 以后. 查看最近更新了解最新的SDK更新情况. 产品功能说明 极光推送(JPush)是一个端到端的推送服务,使得服务器端消息能 ...

  2. iOS极光推送SDK的使用流程

    一.极光推送简介 极光推送是一个端到端的推送服务,使得服务器端消息能够及时地推送到终端用户手机上,整合了iOS.Android和WP平台的统一推送服务.使用起来方便简单,已于集成,解决了原生远程推送繁 ...

  3. IOS 极光推送自定义通知遇到的一些坑

    主要方法: //自定义推送 - (void)networkDidReceiveMessage:(NSNotification *)notification { NSDictionary * userI ...

  4. iOS 极光推送

    1.关于推送的几个证书.http://www.mobile-open.com/2016/931624.html 进入开发者中心:https://developer.apple.com/account/ ...

  5. iOS极光推送

    昨天花了一下午的时间研究了下极光推送,也前也是没做过,不知道从何下手!才开始的时候一看官方的SDK感觉好难,不过经过一系列的捣鼓之后,手机收到了推送信息,感觉其实并没有那么难! 1.配置开发证书(得有 ...

  6. iOS极光推送的基本使用

    昨天花了一下午的时间研究了下极光推送,也前也是没做过,不知道从何下手!才开始的时候一看官方的SDK感觉好难,不过经过一系列的捣鼓之后,手机收到了推送信息,感觉其实并没有那么难! 1.配置开发证书(得有 ...

  7. iOS 极光推送 如何点击推送消息跳转页面

    假如你已经集成完了极光,恰好有这个问题不知如何解决,可以看看这篇文章,这篇是针对远程通知的,本地通知大同小异吧. 根据我项目的要求,极光推送跳转指定页面分为两种情况:app在后台情况和app在杀死的情 ...

  8. iOS - 极光推送证书的创建及过期处理

    无论iPhone还是安卓,我们用到的所有应用基本都有推送通知服务,因为这是应用很好的推广方式,有新产品了.有新更新了通知下用户及时查看.但Apple有点特殊,它的推送需要发到苹果服务器上中转一下,这就 ...

  9. IOS 极光推送&lpar;第三方框架&rpar;

    下载极光推送文件,将以下两个文件导入项目中 APService.h libpushSDK.a #import "HMAppDelegate.h" #import "APS ...

随机推荐

  1. Launching the Debugger Automatically

    You can set up your application to start Visual Studio when you launch the application from Windows. ...

  2. JavaScript数据操作--原始值和引用值的操作本质

    我的一句话总结:原始值不管是变量赋值还是函数传递都不会改变原值,引用值不管是变量赋值还是函数传递,如果新变量重新赋值,则不会影响原引用值,如新变量是直接操作,就会影响原引用值. 首先明确,值和类型是两 ...

  3. HDU 5918 Sequence I KMP

    Sequence I Problem Description   Mr. Frog has two sequences a1,a2,⋯,an and b1,b2,⋯,bm and a number p ...

  4. Introduction the naive&OpenCurlyDoubleQuote;scull” 《linux设备驱动》 学习笔记

    Introduction the naive "scull" 首先.什么是scull? scull (Simple Character Utility for Loading Lo ...

  5. canvas-弧形可拖动进度条

    一.效果如下: See the Pen XRmNRK by pangyongsheng (@pangyongsheng) on CodePen. 链接dome 二. 本文是实现可拖动滑块实现的基本,及 ...

  6. 三丶JavaScript 的基础学习&lpar;一&rpar;

      知识预览 BOM对象 DOM对象(DHTML) 8 实例练习 JavaScript概述 JavaScript的历史 1992年Nombas开发出C-minus-minus(C--)的嵌入式脚本语言 ...

  7. Partition(hdu4651)2013 Multi-University Training Contest 5

    Partition Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Sub ...

  8. Java ——基础语法

    package myhello; // 本类所在的包的路径 import af.util.AfMath; // 导入对应的类 import java.util.Random; // 导入随机数的类 p ...

  9. TP图片上传

    //控制器文件 public function index(){ if(!empty($_POST)){ $file = $_FILES["file"]; if(!isset($f ...

  10. 12月3日周日,关联:has&lowbar;many&lpar;dependent&colon;&colon;delete&lowbar;all和destroy的区别&rpar; 注意看log&semi; where等查询语句的用法。 layout传递参数❌

    错误❌: 1.belongs_to :job, dependent: :destroy //尝试删除一条resumen后,job没有同步删除?? 答:建立一对多的关系,如job和resume.应该在j ...