我正在使用this tutorial要學習推送通知。推送通知不在iphone上接收
<?php
// Put your device token here (without spaces):
$deviceToken = '1675ba8bb005740bb514222227f861c30230a81e6eed6bb6b8f353c57831341d';
// Put your private key's passphrase here:
$passphrase = '111134';
// 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));
echo 'result =' . $result. PHP_EOL;
if (!$result)
echo 'Message not delivered' . PHP_EOL;
else
echo 'Message successfully delivered' . PHP_EOL;
// Close the connection to the server
fclose($fp);
我也配置推送通知的應用程序。配置推後,我也重新創建配置文件,舊的刪除一,安裝新的配置文件。 我運行應用程序,它給了我設備ID,然後我連接服務器沙箱和生產發送推送通知與他們的相對推送配置文件,但仍然無法接收我的設備上的推送通知。
我也在我的設備上安裝ipusher並檢查推送通知。他們來自該應用程序。我注意到
一個奇怪的是,我改變我的應用程序標識和使用任何其他應用程序ID,然後在設備令牌保持相同
現在我的問題是我沒有收到我的設備上的推送通知。
問題不在我的配置文件中。可能是錯誤是我使用的php代碼,因爲當我在遠程服務器上使用easy apns時,它會發送推送通知。 收到的通知時間爲6至7小時。我認爲這是由於我的設備端的網絡問題。 但現在它在生產配置文件2天后正常工作。現在通知沒有時間交付我的設備,但在某些設備上需要30秒到5分鐘。
可以有更多的一個問題,如果你沒有你的設備從其他應用程序在收到推送通知過,那麼你應該檢查你的DNS進行連接。
這是服務器端實現部分iphone應用程序部分。你可以查看這個教程http://mobiforge.com/developing/story/programming-apple-push-notification-services http://www.raywenderlich.com/3443/apple-push-notification-services-tutorial-part- 12 – iamsult
我遵循raywenderlich爲iphone實施。獲取設備標記 –
問題不在我的配置文件中。可能是錯誤是我使用的php代碼,因爲當我在遠程服務器上使用easy apns時,它會發送推送通知。收到的通知時間爲6至7小時。我認爲這是由於我的設備端的網絡問題。但現在它在生產配置文件的2天后工作正常。現在通知沒有時間交付我的設備,但在某些設備上需要30秒到5分鐘。 –