Не удается получить push-уведомление Apple на iphone через службу php

Извините, если это дублирующий вопрос, но я не смог найти решение, которое искал. Вот мой код службы php для отправки уведомления на Iphone:

  <?php
$data = array();
// Put your device token here (without spaces):
$deviceToken = 'eb9ea0d12eb9a0bae159c7e54fa59baee22329df';
// Put your private key's passphrase here:
$passphrase = 'dell';
$message = 'Push notification service';
////////////////////////////////////////////////////////////////////////////////
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'application/controllers/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);

$data['response'] = '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)
$data['response'] = 'Message not delivered' . PHP_EOL;
else
$data['response'] = 'Message successfully delivered' . PHP_EOL;

// Close the connection to the server
fclose($fp);
$response->skills = $data;
$this->response($response, 200);

?>

Я запускаю выше службы в PHP (код Ignitor), чтобы отправить уведомление, но я не использую воспламенитель кода. Хотя вышеуказанный сервис работает успешно, но я не получаю уведомления на свой телефон.
Кто-нибудь может сказать, в чем проблема.

0

Решение

Это работает для меня:

        $ctx = stream_context_create();

stream_context_set_option($ctx, 'ssl', 'local_cert', $certFilePath);
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
stream_context_set_option($ctx, 'ssl', 'cafile', 'entrust_2048_ca.cer');

$webServiceLocation = 'tls://gateway.push.apple.com:2195';
$fp = stream_socket_client(
$webServiceLocation, $err,
$errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);

if (!$fp) exit("Failed to connect: $err $errstr" . PHP_EOL);

$body['aps'] = array('alert' => $message, 'sound' => 'default');

$payload = json_encode($body);

$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;

$result = fwrite($fp, $msg, strlen($msg));

fclose($fp);
0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]