我有我的應用程序推送通知問題。我剛開始使用推送通知,所以我不知道我的問題是什麼原因,我無法在谷歌找到解決方案。 因此,我使用本教程http://www.raywenderlich.com/3443/apple-push-notification-services-tutorial-part-12作爲推送通知編程的示例。當我在終端上運行「php simplepush.php」時,一切都很好,並且在我的設備上收到通知。但是當我在服務器上加載該腳本並嘗試從那裏運行時,不會執行任何操作。只有30秒的等待和消息「無法連接:110連接超時」問題與推送通知IPhone
這裏OS我的腳本
<?php
Put your device token here (without spaces):
$deviceToken = '***************';
// Put your private key's passphrase here:
$passphrase = '**************';
// Put your alert message here:
$message = 'My first push notification!';
////////////////////////////////////////////////////////////////////////////////
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
// Open a connection to the APNS server
$fp = stream_socket_client(
'ssl://gateway.sandbox.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);
終端和服務器是否在相同主辦?您是否驗證過主機可以使用來自主機的SSL連接到gateway.sandbox.push.apple.com?您可能需要在主機上安裝SSL證書。 –
對不起,但我不清楚如何檢查主機上是否安裝了SSL證書。我如何檢查它?順便說一下,我們的主機是由bluehost支持的,bluehost提供安裝SSL證書的一個錢?這是你正在談論的證書嗎?還有一件事 - 如果我從'ssl://gateway.sandbox.push.apple.com:2195'通知中刪除「sandbox」,那麼即使從我的Mac終端上也不會在設備上傳遞通知。但仍然有一條消息'Message successfully delivered' – NewObjective
如果你已經解決了這個問題,你可以在下面發佈解決方案嗎?它可能會幫助其他人處理類似的情況。謝謝。 –