Djibs / Safari-Push-Notifications

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)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Safari Push Notification Server

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)

Requirements

SSL-based server (NOT A self-signed one), PHP, Apple developer account

Usage

  • 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 your Certificate.p12 and Website_Push_ID_Production_Certificate.pem from Apple.
  • Create a mysql database as per push.sql
  • Edit config-sample.php and save it as config.php
  • Replace the images in pushPackage.raw/icon.iconset/

Common issues

  • 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 example https://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"'); )

Generating the .pem file

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

Sending a test push

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)

Where to get more information

Credits

Based on Safari-Push-Notifications by Connor LaCombe (https://github.com/connorlacombe/Safari-Push-Notifications)

About

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)