ios php 推送测试工具,IOS PushNotification - IOS推送测试 PHP 版
這里講的是如何給設備發送一個推送消息,不是如何獲取Token哦!
// Put your device token here (without spaces):
$deviceToken = '獲取到的Token';
// Put your private key's passphrase here:
$passphrase = '123456';
// Put your alert message here:
$message = 'My first push notification!';
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'apans-dis.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
// Open a connection to the APNS server
$fp = stream_socket_client(
'ssl://gateway.push.apple.com:2195', $err,
$errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);
if (!$fp)
exit("Failed to connect: $err $errstr" . PHP_EOL);
echo 'Connected to APNS' . PHP_EOL;
// Create the payload body
$body['aps'] = array(
'alert' => $message,
'sound' => 'default'
);
// Encode the payload as JSON
$payload = json_encode($body);
// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;
// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));
if (!$result)
echo 'Message not delivered' . PHP_EOL;
else
echo 'Message successfully delivered' . PHP_EOL;
// Close the connection to the server
fclose($fp);
修改devicetoken和passphrase這兩個變量為獲取到的token和證書密碼。
保存上面代碼為push.php ,把pem放到文件同目錄。
然后執行 php push.php ,就會收到推送啦
上面代碼使用的是發布證書,如果是測試證書需要修改ssl網址哦。
修改為:
ssl://gateway.sandbox.push.apple.com:2195
總結
以上是生活随笔為你收集整理的ios php 推送测试工具,IOS PushNotification - IOS推送测试 PHP 版的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: matlab的message函数,mat
- 下一篇: php 命名空间地址,php命名空间简介