使用 PHP 的 Apple Push Notification,iphone 没有收到,有啥可能导致这种情况发生?

Posted

技术标签:

【中文标题】使用 PHP 的 Apple Push Notification,iphone 没有收到,有啥可能导致这种情况发生?【英文标题】:Apple Push Notification with PHP, iphone does not recieve, what does possibility cause this happen?使用 PHP 的 Apple Push Notification,iphone 没有收到,有什么可能导致这种情况发生? 【发布时间】:2011-02-25 08:18:11 【问题描述】:

这里是我在 linux 服务器上的编码。

$ctx = stream_context_create(); 
stream_context_set_option($ctx, 'ssl', 'local_cert', 'apns-prod.pem'); 
$apnsConnection = stream_socket_client('ssl://gateway.push.apple.com:2195', $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx); 

$deviceToken = "XXXX";  //no space
$message = "A new question has been posted";

$body = array();
$body['aps'] = array('alert' => $message);
$badge = 1;
$sound = 1;

if($badge)
$body['aps']['badge'] = $badge;

if($sound)
$body['aps']['sound'] = $sound;

$payload = json_encode($body);
$msg = chr(0) . pack("n",32) . pack('H*', str_replace(' ', '', $deviceToken)) . pack("n",strlen($payload)) . $payload;
echo $payload;

fwrite($apnsConnection, $msg);
fclose($apnsConnection);

【问题讨论】:

也许你可以从中学到一些东西:easyapns.com 可能是这个? ***.com/questions/2293155/… 【参考方案1】:

如果您的托管服务器未打开端口:2195 或 2196,就会发生这种情况。

【讨论】:

【参考方案2】:

我发现了同样的问题。我猜Apple不会因为一些错误而发送推送。 所以我这样解决了: 当 iPhone 收到推送时,它会返回服务器并更新表中的 GetPush 列。 只要(或三倍)此 GetPush 列未设置,服务器就会要求 Apple 服务器发送推送。

【讨论】:

以上是关于使用 PHP 的 Apple Push Notification,iphone 没有收到,有啥可能导致这种情况发生?的主要内容,如果未能解决你的问题,请参考以下文章

PHP Apple Push Notifications 反馈服务

使用 PHP 的 Apple Push Notification,iphone 没有收到,有啥可能导致这种情况发生?

Apple Push Notification 在共享服务器上不起作用

推送包签名验证失败 - Safari Push

不能远程登录 gateway.sandbox.push.apple.com 2195?

Sencha touch 2 + Apple 推送通知 + Ext.device.Push