我正在使用这个php脚本,但它生成输出消息已成功发送但未发送通知。我已经检查了设备ID和证书,它们是完美的,并且可以正常使用其他脚本。
<?php
// Put your device token here (without spaces):
$deviceToken = 'fbf04bf4ace2f1e823016082da3a798cf3ab666ae99a395b65e364eb4c6d6d4a';
// Put your private key's passphrase here:
$passphrase = '123';
// Put your alert message here:
$message = 'A push notification has been sent!';
////////////////////////////////////////////////////////////////////////////////
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'key.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 | 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' => array('body' => $message, 'action-loc-key' => 'Look', ), 'badge' => 2, 'sound' => 'oven.caf', );
// 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 "<pre>Result : ";
print_r($result);
if (!$result)
echo 'Message not delivered' . PHP_EOL;
else
echo 'Message successfully delivered' . PHP_EOL;
// Close the connection to the server
fclose($fp);
?>
任何人都可以帮助我摆脱这种局面。 提前致谢
答案 0 :(得分:0)
首次启动iOS推送通知时遇到类似问题
您可能正在进行开发推动而不是生产推动 将服务器更改为ssl://gateway.sandbox.push.apple.com:2195并使用您的开发推送通知密钥进行尝试。
解决了我的问题
答案 1 :(得分:0)
我认为你必须change port number
您的代码:ssl://gateway.push.apple.com:2195.
2195
用于沙箱,2196
用于直播。
请你改变它并尝试。
希望这项工作。