java 基于javapns IOS推送的配置

发布时间:2020-05-30 19:44:29 作者:idalang
来源:网络 阅读:578
1.enable logging

javapns使用的log4j,为确保log的正常工作,在使用过程中添加如下代码:
import org.apache.log4j.*;
   ...
try {        
 BasicConfigurator.configure();  
    ... 
 } catch (Exception e) { 
 //do sth.
 }
log4j.properties中添加:
log4j.logger.javapns=debug

2.sandbox(开发环境)到production(产品环境)迁移的注意事项

    两套环境的device tokens是不同的,在迁移后需要更新device tokens。
    两套环境的certificates也是不同的,需要更新证书。
    修复sandbox环境工作,production推送失败的解决方案。
    http://www.techjini.com/blog/how-we-fixed-production-push-notifications-not-working-while-sandbox-works/


3.定制消息内容
public void send (List<Device> devices, Object keystore, String password, boolean production) {  
      /* Build a blank payload to customize */       
  PushNotificationPayload payload = PushNotificationPayload.complex();  
      /* Customize the payload */        
payload.addAlert("Hello World!");  //apple提示消息      
payload.addCustomDictionary("webview", "http://www.womai.com"); //隐藏参数,用于实现一些定制操作,比如自动跳转。   
payload.addCustomDictionary("mykey2", 2);     // etc.  
      /* Push your custom payload */        
List<PushedNotification> notifications = Push.payload(payload, keystore, password, production, devices);  
}


4.多线程批量发送推送消息
public void send (List<Device> devices, Object keystore, String password, boolean production) {  
      /* Prepare a simple payload to push */        
PushNotificationPayload payload = PushNotificationPayload.alert("Hello World!");  
      /* Decide how many threads you want to create and use */         
int threads = 30;  
      /* Start threads, wait for them, and get a list of all pushed notifications */         
List<PushedNotification> notifications = Push.payload(payload, keystore, password, production, threads, devices);  
}
备注:以上多线程方法在所有线程执行完后返回,如果不想等线程执行完毕,可以通过在内部创建一个单独的线程:
 (示例: new Thread() {public void run() {...}}.start();). 
 
5.创建消息队列(连接池)
一个队列就是一组连接APNS的多线程连接,队列会动态将消息分发到不同的线程中去。 
public void send (String token, Object keystore, String password, boolean production) {  
      /* Prepare a simple payload to push */        
PushNotificationPayload payload = PushNotificationPayload.alert("Hello World!");  
      /* Decide how many threads you want your queue to use */        
int threads = 30;  
      /* Create the queue */         
PushQueue queue = Push.queue(keystore, password, production, threads);  
      /* Start the queue (all threads and connections and initiated) */         
queue.start();  
      /* Add a notification for the queue to push */         
queue.add(payload, token);  
}
备注:如果不通过queue.start消息队列,队列会在第一次调用queue.add 的时候启动
 
5.建议开启EnhancedNotificationFormat
默认为开启状态,建议开启,开启后可以通过Payload对象获取到更多推送消息的详细信息,例如执行状态,失效时间等。
  
6.推送状态(错误)管理
1) error-response packets 
    pushedNotification.isSuccessful() //判断是否推送成功 
    pushedNotification.getException() //获取详细错误信息,系统中错误不会抛出,以保证多线程的正常运作,错误信息会记录到pushedNotification中。
   
示例代码:
  List<PushedNotification> notifications = Push.alert("Hello World!",                                                          "keystore.p12", "keystore_password", false, devices);                          for (PushedNotification notification : notifications) {                                 if (notification.isSuccessful()) {                                         /* Apple accepted the notification and should deliver it */                                           System.out.println("Push notification sent successfully to: " +                                          notification.getDevice().getToken());                                         /* Still need to query the Feedback Service regularly */                                   } else {                                         String invalidToken = notification.getDevice().getToken();                                         /* Add code here to remove invalidToken from your database */                                           /* Find out more about what the problem was */                                           Exception theProblem = notification.getException();                                         theProblem.printStackTrace();                                         /* If the problem was an error-response packet returned by Apple, get it                                          ResponsePacket theErrorResponse = notification.getResponse();                                         if (theErrorResponse != null) {                                                 System.out.println(theErrorResponse.getMessage());                                         }                                 }                         }  
  
2)Feedback Service
 public class FeedbackTest {  
      public static void main(String[] args) {         
                List<Device> inactiveDevices = Push.feedback("keystore.p12", "keystore_password", false);                 /* remove inactive devices from your own list of devices */
    }
  
备注:Sandbox Feedback Service not listing device after app is removed
          Delays involving the Feedback service
推荐阅读:
  1. Appium环境准备及IOS真机测试
  2. 【干货】iOS9的新特性UI Tests

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

ios push javapns

上一篇:nagios 监控NFS

下一篇:Dockerfile 定制镜像

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》