gpt4 book ai didi

java - 如何使用 javapns 从苹果的增强型通知格式中获取错误响应数据包

转载 作者:行者123 更新时间:2023-11-29 04:39:15 25 4
gpt4 key购买 nike

ResponsePacket theErrorResponse = PushNotification.getResponse();我正在使用javapns2.2并尝试从苹果的增强型通知格式捕获错误响应数据包。当我发送推送通知(例如使用无效 token )时,代码

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());
}

总是返回null。如何使用 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,因为异常机制阻止了对 APN 的调用更加高效。真正的错误被打包在异常机制中。

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

关于java - 如何使用 javapns 从苹果的增强型通知格式中获取错误响应数据包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10637212/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com