アプリのプッシュ通知に問題があります。プッシュ通知を使い始めたばかりなので、問題の原因がわからず、Google で解決策を見つけることができません。そこで、プッシュ通知のプログラミングの例として、このチュートリアルhttp://www.raywenderlich.com/3443/apple-push-notification-services-tutorial-part-12を使用しました。端末で「php simplepush.php」を実行すると、すべて問題なく、デバイスに通知が届きます。しかし、そのスクリプトをサーバーにロードしてそこから実行しようとすると、アクションは実行されません。わずか 30 秒の待機とメッセージ「接続に失敗しました: 110 接続がタイムアウトしました」
これが私のスクリプトのコードです
<?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);