关于ios极光推送server端注意的地方
今天试用了极光推送API
用它是因为,大多数人说它的文档是最全的,但是用过之后,发现关于IOS的文档,还是很不够,导致走了一点弯路!
特别是服务端的代码:https://github.com/jpush/jpush-api-java-client for java
- 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);
- }
- }
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这个方法.
- /**
- *
- */
- 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));
- }
- }
/**
*
*/
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端注意的地方的更多相关文章
- (转载)iOS 极光推送SDK 集成指南
iOS SDK 集成指南 使用提示 本文匹配的 SDK版本:r1.2.5 以后. 查看最近更新了解最新的SDK更新情况. 产品功能说明 极光推送(JPush)是一个端到端的推送服务,使得服务器端消息能 ...
- iOS极光推送SDK的使用流程
一.极光推送简介 极光推送是一个端到端的推送服务,使得服务器端消息能够及时地推送到终端用户手机上,整合了iOS.Android和WP平台的统一推送服务.使用起来方便简单,已于集成,解决了原生远程推送繁 ...
- IOS 极光推送自定义通知遇到的一些坑
主要方法: //自定义推送 - (void)networkDidReceiveMessage:(NSNotification *)notification { NSDictionary * userI ...
- iOS 极光推送
1.关于推送的几个证书.http://www.mobile-open.com/2016/931624.html 进入开发者中心:https://developer.apple.com/account/ ...
- iOS极光推送
昨天花了一下午的时间研究了下极光推送,也前也是没做过,不知道从何下手!才开始的时候一看官方的SDK感觉好难,不过经过一系列的捣鼓之后,手机收到了推送信息,感觉其实并没有那么难! 1.配置开发证书(得有 ...
- iOS极光推送的基本使用
昨天花了一下午的时间研究了下极光推送,也前也是没做过,不知道从何下手!才开始的时候一看官方的SDK感觉好难,不过经过一系列的捣鼓之后,手机收到了推送信息,感觉其实并没有那么难! 1.配置开发证书(得有 ...
- iOS 极光推送 如何点击推送消息跳转页面
假如你已经集成完了极光,恰好有这个问题不知如何解决,可以看看这篇文章,这篇是针对远程通知的,本地通知大同小异吧. 根据我项目的要求,极光推送跳转指定页面分为两种情况:app在后台情况和app在杀死的情 ...
- iOS - 极光推送证书的创建及过期处理
无论iPhone还是安卓,我们用到的所有应用基本都有推送通知服务,因为这是应用很好的推广方式,有新产品了.有新更新了通知下用户及时查看.但Apple有点特殊,它的推送需要发到苹果服务器上中转一下,这就 ...
- IOS 极光推送(第三方框架)
下载极光推送文件,将以下两个文件导入项目中 APService.h libpushSDK.a #import "HMAppDelegate.h" #import "APS ...
随机推荐
- 使用HTTP协下载文件
通过发送HTTP请求,下载文件 头文件: #ifndef __HTTP__ #define __HTTP__ #include <stdio.h> #include <stdlib. ...
- Push failed: Failed with error: fatal: Could not read from remote repository.
GitLab push远端,出现错误提示:Push failed: Failed with error: fatal: Could not read from remote repository. 原 ...
- PZISP自动下载软件运行时出现“应用程序无法启动,因为应用程序的并行配置不正确”
在win7下以管理员身份运行“PZISP自动下载软件”时出现“应用程序无法启动,因为应用程序的并行配置不正确”时,是因为系统里面没有一些visual c++库 想一想,反正以后也要用上VS2010的, ...
- 蛮考验基础的JS笔试题(有坑小心!)
1. 考察this var length = 10 function fn(){ alert(this.length) } var obj = { length: 5, method: functi ...
- ios开发经典语录锦集
原文链接: iPhone开发经典语录集锦 前言:iPhone是个极具艺术性的平台,相信大家在开发过程中一定有很多感触,希望能写出来一起交流,所以开了这个帖子,以后还会维护. 如果大家和我一样有感触的话 ...
- 关于Java中形参与实参的理解
今天阅读了一个写的非常棒的博文,通过此博文再次复习了Java中参数传递的知识(即值传递与引用传递的区别).参考网站http://www.cnblogs.com/binyue/p/3862276.htm ...
- 移动端rem自适应布局关键代码
function resi() { var html = document.querySelector("html"); var wW = document.body.client ...
- MyBatis学习系列三——结合Spring
目录 MyBatis学习系列一之环境搭建 MyBatis学习系列二——增删改查 MyBatis学习系列三——结合Spring MyBatis在项目中应用一般都要结合Spring,这一章主要把MyBat ...
- 设计模式-观察者模式(Observer)
简介: 观察者模式,也称为订阅-发布模式,定义对象间的一种一对多的依赖关系,当一个对象的状态发生变化时,所有依赖他的对象都得到通知并被自动更新. 主要由以下几个部分组成: a.Subject目标对象. ...
- 抢滩登陆游戏android源码
是3d游戏开发技术详解与技术案例书里的一个例子 不多说上图{:soso_e113:} 源码下载地址:http://code.662p.com/view/2271.html <ignore_js_ ...