如何使用javapns从Apple的增强通知格式中获取错误响应数据包



ResponsePacket theErrorResponse = pushedNotification.getResponse();我正在使用javapns2.2,并试图从Apple的增强通知格式中捕获错误响应数据包。当我发送推送通知(例如使用无效令牌)时,代码

Exception theProblem = pushedNotification.getException();
theProblem.printStackTrace();

向控制台输出一些错误,但是

ResponsePacket theErrorResponse = pushedNotification.getResponse();
if (theErrorResponse != null && theErrorResponse.isErrorResponsePacket()) {
      System.out.println(theErrorResponse.getMessage());
      System.out.println(theErrorResponse.getStatus());
}

始终返回空值。如何使用 getResponse() 获取状态代码?

这是我代码的一部分:

List<PushedNotification> notifications = Push.payload(payload, keystore, password, production, devices);
        for (PushedNotification pushedNotification : notifications) {
            if(pushedNotification.isSuccessful())
            {
                System.out.println(pushedNotification.getDevice().getToken());                  
            }
            else
            {
                System.out.println(pushedNotification.getDevice().getToken());
                Exception theProblem = pushedNotification.getException();
                theProblem.printStackTrace();
                ResponsePacket theErrorResponse = pushedNotification.getResponse();
                if (theErrorResponse != null && theErrorResponse.isErrorResponsePacket()) {
                        System.out.println(theErrorResponse.getMessage());
                        System.out.println(theErrorResponse.getStatus());
                }
            }
        }

谢谢你的帮助

我想通了。

getResponse() 返回 null,因为异常机制阻止了对 APNs 的调用更有效。真正的错误包含在异常机制中。

在此链接中,一切都得到了超级解释:http://code.google.com/p/javapns/issues/detail?id=79&can=1

最新更新