Php APN可以推送通知

Php APN可以推送通知,php,ios,objective-c,apple-push-notifications,Php,Ios,Objective C,Apple Push Notifications,我使用PHP向APNs发送消息,它运行良好,但我无法在iPhone中获取消息;以下是PHP代码: <?php $deviceToken = '740f4707bebcf74f9b7c25d48e3358945f6aa01da5ddb387462c7eaf61bb78ad'; // Put your private key's passphrase here: $passphrase = 'abc123456'; // Put your alert message here: $mess

我使用PHP向APNs发送消息,它运行良好,但我无法在iPhone中获取消息;以下是PHP代码:

<?php
 $deviceToken = '740f4707bebcf74f9b7c25d48e3358945f6aa01da5ddb387462c7eaf61bb78ad';
// Put your private key's passphrase here:
 $passphrase = 'abc123456';
// Put your alert message here:
$message = 'My first push test!';
$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.push.apple.com:2195“, $err,$errstr, 60, //STREAM_CLIENT_CONNECT, $ctx);
$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);
 ?>

您是否已设置设置配置文件、应用ID并将应用配置为接收推送通知?@AstroCB是的,我已设置了所有内容,但仍然无法获取消息。您是否使用了正确的APNS设备令牌?@SurajMirajkar谢谢,我已修复。