发送多个iPhone通知

时间:2009-10-29 09:00:31

标签: iphone notifications apple-push-notifications

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

<?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);
}?>

我做错了什么?

提前, Mladjo

3 个答案:

答案 0 :(得分: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);
}?>

另请注意,Apple建议使用相同的连接发送所有推送通知,这样每次发送推送通知时都不应该连接。

答案 1 :(得分: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连接并发送消息....

答案 2 :(得分:0)

在这里黑暗中拍摄。看着你的循环。

看起来你打开连接并推送消息......但这种连接是否会自行关闭?您是否需要为每次推送启动新连接,从而必须在重新启动另一个推送之前关闭while循环结束时的第一个连接?