-
-
Save seyfer/9783ade21a91b6346287d046ea952784 to your computer and use it in GitHub Desktop.
Quickly send an Apple Push Notification using PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$apnsHost = 'gateway.sandbox.push.apple.com'; | |
$apnsCert = 'ck.pem'; | |
$apnsPort = 2195; | |
$apnsPass = '<PASSWORD_GOES_HERE>'; | |
$token = '<DEVICE_TOKEN_GOES_HERE>'; | |
$payload['aps'] = array('alert' => 'Oh hai!', 'badge' => 1, 'sound' => 'default'); | |
$output = json_encode($payload); | |
$token = pack('H*', str_replace(' ', '', $token)); | |
$apnsMessage = chr(0).chr(0).chr(32).$token.chr(0).chr(strlen($output)).$output; | |
$streamContext = stream_context_create(); | |
stream_context_set_option($streamContext, 'ssl', 'local_cert', $apnsCert); | |
stream_context_set_option($streamContext, 'ssl', 'passphrase', $apnsPass); | |
$apns = stream_socket_client('ssl://'.$apnsHost.':'.$apnsPort, $error, $errorString, 2, STREAM_CLIENT_CONNECT, $streamContext); | |
fwrite($apns, $apnsMessage); | |
fclose($apns); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment