Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

APNS certificate not shown when generating provisioning profile

I am new in iOS development. I have created app, then i want to add APNS service, too, so I have generated a new app id which include Notification Service then I have create APNS development and distribution certificate but when I going to generate provision profile using this new app id in add certificate section it will show me only previous development certificates.NOT APNS development certificate so my Question is:

  1. Is APNS certificate is necessary to Add in provision profile of new app id

  2. If it is necessary then why it not show in certificate section or i am do something wrong

like image 310
Mansur Avatar asked Mar 04 '15 13:03

Mansur


People also ask

How do I validate my APNs certificate?

How to Validate the APNS Certificate. A simple command can validate the . pfx file you have taken during the certificate creation/renewal process. This will require the same file and certificate password that was uploaded to the core server.

What is the difference between provisioning profile and certificate?

A provisioning profile specifies a Bundle Identifier, so the system knows which app the permission is for, a certificate, with the information who created the app, and it's defined in which ways the app can be distributed.


1 Answers

No APNS certificates are not included in provisioning profiles.

They are used by Apple to ensure that only your server can send Push Notifications to your application.

Although a bit old, but basic concepts are still the same. Push Notification Tutorial

like image 128
Taha Samad Avatar answered Oct 23 '22 09:10

Taha Samad