Java APNS (Apple Push Notification Service) error

混江龙づ霸主 提交于 2019-11-30 20:48:54

Java APNS is expecting the cert as .p12 file.

You have to check both privatekey and certificate in your keychain. then right click-> "export 2 files" and export them you have to give it a password, this password you have to type here

.withCert("gpk.pem", "XXXX")

as your XXXX

good luck

EDIT:

.P12 – PKCS#12, contains certificates an private keys saved with a password .PEM – is Base64-encoded certificate, lockedby „-----BEGIN CERTIFICATE-----“ and „-----END CERTIFICATE-----“

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!