我正在尝试推送通知,但每次我收到无效令牌。 我得到的错误是:
APNS:[1]无效令牌javapns.notification.exceptions.ErrorResponsePacketReceivedException:从APNS服务器收到错误响应数据包:APNS:[1]无效令牌]
PushNotificationPayload payload=PushNotificationPayload.complex();
payload.addAlert("Hello");
PushedNotifications Notify=Push.alert("hiii", "C:\\Users\\Documents\\PushNotification\\APNS.p12", "123456", true, "Device Token ");/*ra*/
PushedNotification.findSuccessfulNotifications(Notify);
NotificationTest.printPushedNotifications(Notify);
System.out.println("Success "+PushedNotification.findSuccessfulNotifications(Notify));
System.out.println("failed "+PushedNotification.findFailedNotifications(Notify));
答案 0 :(得分:0)
APNS:[1]无效令牌表示您使用的设备令牌无效。假设您的应用程序从Apple获得此设备令牌(并且您没有使用随机令牌),您可能正在使用开发令牌将推送通知发送到生产推送服务器,反之亦然。设备令牌仅在一个环境(沙箱或生产环境)中有效。