当前位置: 移动技术网 > IT编程>开发语言>Java > Java服务端程序推送消息到apns报错sslexception 大家有什么解决办法吗?挺急的谢谢啦

Java服务端程序推送消息到apns报错sslexception 大家有什么解决办法吗?挺急的谢谢啦

2020年07月17日  | 移动技术网IT编程  | 我要评论

使用Java程序推送apns消息报错sslException?

程序代码:

import java.util.List;

import javapns.Push;

import javapns.notification.PushedNotification;

import javapns.notification.ResponsePacket;

public class Test1 {

public static void main(String[] args) {

String[] devices = {“2f48b73df95e878bd313622ffa0c7ec06d43571dcd7d658db1c355f5beb8433f”};

try {

List notifications = Push.alert(“Hello World!”,“push.p12”, “123123”, false, devices);

for (PushedNotification notification : notifications) {

if (notification.isSuccessful()) {

System.out.println("Push notification sent successfully to: " +

notification.getDevice().getToken());

} else {

String deviceToken = notification.getDevice().getToken();

System.out.println("deviceToken = " + deviceToken);

Exception theProblem = notification.getException();

theProblem.printStackTrace();

ResponsePacket theErrorResponse = notification.getResponse();

if (theErrorResponse != null) {

System.out.println(theErrorResponse.getMessage());

}

}

}

} catch (Exception e) {

e.printStackTrace();

}

}

}

在这里插入图片描述

本文地址:https://blog.csdn.net/woshiniezepeng/article/details/107371238

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网