Reference Server for pushing Safari Notifications via Apple Push Notification Service For use with Safari Push Plugin for Wordpress (https://github.com/surrealroad/wp-safari-push)
SSL-based server (NOT A self-signed one), PHP, Apple developer account
- Register your site with Apple (refer to this document )
- Upload all files to the root (eg.
https://push.myserver.com/
), and be sure to include both yourCertificate.p12
andWebsite_Push_ID_Production_Certificate.pem
from Apple. - Create a mysql database as per
push.sql
- Edit
config-sample.php
and save it asconfig.php
- Replace the images in
pushPackage.raw/icon.iconset/
- You must be using an SSL (HTTPS) server, signed by a recognised authority. If you're looking for a free service, we've been using StartCom which works well.
- Requests must be mapped to
/v1/request
(for examplehttps://push.yoursite.com/v1/pushPackages
must be a valid URL) - the included.htaccess
file should do this for you if you upload the files to the server root - You will probably need to specify domains with and without the "www." part in the config file (e.g.
define('ALLOWED_DOMAINS', '"http://example.com", "http://www.example.com"');
)
During the push registration process you should receive two files, the .p12
and website_aps_production.cer
file. Apple calls this last one a "Website Push ID Production Certificate".
The p12 file is used to create a push package (to request the user to accept notifications from your site).
The cer file is used to actually send out push notifications by the server (to establish communication with APNS), but it seems it must be converted into a .pem
file first, which the official documentation doesn't mention.
To perform this conversion, use the command openssl x509 -in website_aps_production.cer -inform DER -out apns-cert.pem -outform PEM
in Terminal. See this Stackoverflow article for more information.
You can then test that you can connect to APNS using this file with the command openssl s_client -connect gateway.push.apple.com:2195 -CAfile apns-cert.pem
If you've configured everything correctly, and are at the point where you are successfully able to subscribe to notifications through Safari, you can manually send a test notification from Terminal with:
curl --data-urlencode "title=Test" --data-urlencode "body=This is a test" --data-urlencode "button=View" --data-urlencode "urlargs=/" --data-urlencode "auth=your authentication code" https://push.yoursite.com/v1/push
or if you know the specific device token to send the push to, replace https://push.yoursite.com/v1/push
with https://push.yoursite.com/v1/push/devicetoken/
You can also do this in a browser, like so:
https://push.yoursite.com/v1/push?title=Test&body=This%20is%20a%20test&button=View&urlargs=%2F&auth=your_authentication_code
(for a specific device, that's https://push.yoursite.com/v1/push/devicetoken/?title=Test&body=This%20is%20a%20test&button=View&urlargs=%2F&auth=your_authentication_code
)
- Apple's documentation: https://developer.apple.com/notifications/safari-push-notifications/
- Certificate creation: http://www.raywenderlich.com/32960/apple-push-notification-services-in-ios-6-tutorial-part-1
Based on Safari-Push-Notifications by Connor LaCombe (https://github.com/connorlacombe/Safari-Push-Notifications)