我正在将 APNS 集成到我的 iPhone 应用程序中。我已经浏览了 Apple 提供的 Apple Push Notification 文档。我对服务器端有疑问。请在下面找到我的疑问,
1. Apple said to create a server from below steps,
Installing the SSL Certificate and Key on the Server:
You should install the SSL distribution certificate and private cryptographic key you obtained earlier on the server computer on which the provider code runs and from which it connects with the sandbox or production versions of APNs. To do so, complete the following steps:
1.1.Open Keychain Access utility and click the My Certificates category in the left pane.
1.2.Find the certificate you want to install and disclose its contents.
You'll see both a certificate and a private key.
1.3.Select both the certificate and key, choose File > Export Items, and export them as a Personal Information Exchange (.p12) file.
1.4.Servers implemented in languages such as Ruby and Perl often are better able to deal with certificates in the Personal Information Exchange format. To convert the certificate to this format, complete the following steps:
a.In KeyChain Access, select the certificate and choose File > Export Items. Select the Personal Information Exchange (.p12) option, select a save location, and click Save.
b.Launch the Terminal application and enter the following command after the prompt: openssl pkcs12 -in CertificateName.p12 -out CertificateName.pem -nodes
1.5.Copy the .pem certificate to the new computer and install it in the appropriate place.
Am clear to create a server (i assume it will be .php server). Am doubt is how we storing all user's DeviceTokens in the server?
2. How to send push notifications to all registered devicetokens?
3. How to send push notifications to a specific user?
您能否就我的问题提出一些建议?我从此链接获得了一个示例 .php 文件http://www.raywenderlich.com/3443/apple-push-notification-services-tutorial-part-12
。请帮我。提前致谢。