Reputation: 531
I had an app hosted in my organization's internal app store. The app has Push Notifications feature.
The distribution certificate (In-House type) using which the app was launched to internal store expires in Feb 2017.
However, the push notification certificates for the app got expired on August 15th, 2016 but we forgot to notice and came to know about this only yesterday. The users are not receiving any notifications post August 15th.
I have created new push notification certificates at the Member Center, .p12 of which I have shared with the application server team.
My questions are -
Thanks!!
Upvotes: 1
Views: 1067
Reputation: 647
Here is the answer.
1) Create new push certificate and .p12 file. Replace new .p12 file with the old one at the server.
2) You don't need to send update of your app.
Hope this helps!
Upvotes: 1
Reputation: 721
Generate a new certificate and replace the old one.
When your existing APNS certificate expired, if your server still uses it - existing iOS applications will not be able to receive any notifications from your server. But as soon as you regenerate certificate and update your server to use it - everything will be normal again without any changes to already installed apps.
Upvotes: 2
Reputation: 3588
You need to generate .pem
file by using your .p12
follow this - Generate .pem file Used to setup Apple PUSH Notification
Once you have .pem
update your server with new .pem
that's all. Now you should get notification.
Upvotes: 1
Reputation: 1538
You don't have to make a update for App. If certificate is expired, just generate the new certificate for development and production. Upload those certificates p12 to your server.
Upvotes: 2
Reputation: 110
You need to regenerate the certificate from member center and you need to update your server with new .pem/.p12 file used for sending push notifications
Upvotes: 1