发送多个 iPhone 通知

问题描述 投票:0回答:3

当我需要发送一个通知时,我的代码工作正常,但每次当我需要发送多个通知时,它只发送第一个通知。这是代码:

<?php
$device_token = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';

$apnsHost = 'gateway.sandbox.push.apple.com';
$apnsPort = 2195;
$apnsCert = 'apns-dev.pem';

$streamContext = stream_context_create();
stream_context_set_option($streamContext, 'ssl', 'local_cert', $apnsCert);

$apns = stream_socket_client('ssl://' . $apnsHost . ':' . $apnsPort, $error, $errorString, 60, STREAM_CLIENT_CONNECT, $streamContext);

$payload['aps'] = array('alert' => 'some notification', 'badge' => 0, 'sound' => 'none');
$payload = json_encode($payload);

for($i=0; $i<5; $i++)
{
    $apnsMessage = chr(0) . chr(0) . chr(32) . pack('H*', str_replace(' ', '', $device_token)) . chr(0) . chr(strlen($payload)) . $payload;

    fwrite($apns, $apnsMessage);
}?>

我做错了什么?

提前谢谢, 姆拉乔

php iphone notifications apple-push-notifications
3个回答
3
投票

您应该只打开与 apns 的连接一次。现在你正在循环中打开它,这是错误的。我还使用稍微不同的方案来构建我的消息。你应该这样做:

$apns = stream_socket_client('ssl://' . $apnsHost . ':' . $apnsPort, $error, $errorString, 60, STREAM_CLIENT_CONNECT, $streamContext);
for($i=0; $i<5; $i++)
{
        $apns_message = chr(0).pack('n', 32).pack('H*', $device_token).pack('n', strlen($payload)).$payload;

        fwrite($apns, $apnsMessage);
}?>

另请注意,苹果建议使用相同的连接来发送所有推送通知,因此您不应在每次有推送通知要发送时都进行连接。


1
投票

查看以下文档: http://developer.apple.com/library/mac/#documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/CommunicatingWIthAPS/CommunicatingWIthAPS.html#//apple_ref/doc/uid/TP40008194-CH101-SW3

它表示应使用 TCP/IP Nagle 算法在一次传输中发送多个通知。您可以在这里了解 Nagle 算法: http://en.wikipedia.org/wiki/Nagle%27s_algorithm

所以我相信创建消息的代码应该如下所示:

// Create the payload body
$body['aps'] = array(
'alert' => "My App Message",
'badge' => 1);

// Encode the payload as JSON
$payload = json_encode($body);

// Loop through the token file and create the message
$msg = "";
$token_file = fopen("mytokens.txt","r");
if ($token_file) {
    while ($line = fgets($token_file)) {
        if (preg_match("/,/",$line)) {
            list ($deviceToken,$active) = explode (",",$line);
            if (strlen($deviceToken) == 64 && intval($active) == 1) {
                // Build the binary notification
                $msg .= chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;
            }
        }
    }
    fclose ($token_file);
}


if ($msg == "") {
    echo "No phone registered for push notification";
    exit;
}

现在打开 TCP 连接并发送消息....


0
投票

在黑暗中拍摄。看看你的 for 循环。

看起来您打开了连接并推送了消息...但是该连接会自行关闭吗?您是否需要为每次推送启动一个新连接,从而需要在 while 循环结束时关闭第一个连接,然后才能重新启动另一个连接?

© www.soinside.com 2019 - 2024. All rights reserved.