多个设备的 ios 推送通知
Posted
技术标签:
【中文标题】多个设备的 ios 推送通知【英文标题】:ios push notification for multiple devices 【发布时间】:2013-04-17 06:35:22 【问题描述】:我有以下用于 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);
【问题讨论】:
iOS Push Notifications Question的可能重复 【参考方案1】:它的design by default
,但没有传递设备令牌数组的选项。您必须遍历循环。
【讨论】:
是否有任何替代选项可用,我可以创建一个 device_tokens 数组以与苹果有效负载一起上传,并且通知会发送到数组中指定的所有设备,比如说 ex。 1000 个用户或更多?请帮忙 它的默认设计,你不能发送数组,你必须遍历所有设备令牌的数组才能发送到多个推送通知。 我的代码与上面几乎相同,但是当我尝试将推送发送到多个设备时(fwrite 到每个device_id
),如果我有一个包含 2-3 个设备 ID 的数组,它就可以工作(只测试了这么多),但是当我有大约 300 个设备 ID 时不起作用【参考方案2】:
这种方法的替代方法是使用第三方,如amazon SNS service。在这里您可以发布到主题(一个请求),所有订阅该主题的设备都会收到通知。
【讨论】:
以上是关于多个设备的 ios 推送通知的主要内容,如果未能解决你的问题,请参考以下文章