ios推送多个设备的通知

时间:2013-04-17 06:35:23

标签: php iphone push-notification apple-push-notifications

我有以下用于ios推送通知的php代码。这是我在fwrite()部分使用循环编写2个设备的代码。当前代码工作正常。我的疑问是,我可以直接传递设备令牌数组而不使用for循环吗?

<?php
// Put your device token here (without spaces):
$deviceToken[0] = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';

$deviceToken[1] = 'yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy';

// Put your private key's passphrase here:
$passphrase = '123456';

// Put your alert message here:
$message = 'multiple device push notification...!';

////////////////////////////////////////////////////////////////////////////////

$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'abc.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);

// Open a connection to the APNS server
$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',
'badge' => '+1'
);

// Encode the payload as JSON
$payload = json_encode($body);
for($i=0;$i<2;$i++)
{
// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken[$i]) . pack('n', strlen($payload)) .     $payload;

// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));
echo "msg may be delivered";
}

if (!$result)
echo 'Message not delivered' . PHP_EOL;
else
echo 'Message successfully delivered' . PHP_EOL;

// Close the connection to the server
fclose($fp);

2 个答案:

答案 0 :(得分:6)

design by default,但没有传递设备令牌数组的选项。你必须遍历循环。

答案 1 :(得分:0)

此方法的替代方法是使用amazon SNS service之类的第三方。在这里,您可以发布到主题(一个请求),订阅此主题的所有设备都将收到通知。