gpt4 book ai didi

ios - 用于 iOS 推送通知的 PHP,有时超过 1 台设备

转载 作者:行者123 更新时间:2023-11-29 12:42:59 26 4
gpt4 key购买 nike

我正在构建一个应用程序,我在其中使用 NSUserDefaults 来存储各种信息,包括用于 iOS 上的 APNS 的 deviceToken。它目前的工作方式是用户提交一个请求,然后它向 XML 添加一个条目,该 XML 中的元素之一称为 deviceToken。当有人响应该请求时,它会触发页面底部的 PHP 向该特定请求的 deviceToken 发送推送通知。我的问题是有些人拥有不止一台设备,将推送通知发送到该所有者的所有设备会很好。正如您在下面的代码中看到的,我有 2 个 deviceTokens 区域。如果 XML 包含 2 个设备 token ,一切都很好。问题是对于只有 1 个 token 的那些,它甚至无法交付。我该如何修复此 PHP,使其能够接受 2 个 deviceTokens,但如果只有 1 个可用,它仍会交付?

<?php
$first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];
$title = $_POST['title'];
$deviceToken = $_POST['deviceToken'];
$deviceToken2 = $_POST['deviceToken2'];
$xml = simplexml_load_file("http://www.URL.xml") or die("Not loaded!\n");

$passphrase = 'passphrase';

// Put your alert message here:
$message = 'Someone just responded to you!';

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

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

// Open a connection to the APNS server
$fp = stream_socket_client(
'ssl://gateway.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'
);

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

// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;
$msg2 = chr(0) . pack('n', 32) . pack('H*', $deviceToken2) . pack('n', strlen($payload)) . $payload;

// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));
$result = fwrite($fp, $msg2, strlen($msg2));


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

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

最佳答案

您可以做的是将该函数用作通用函数:也就是说,它接受一个设备 token 对象。这可以是单个字符串,也可以是多个字符串的数组。

然后,使用is_array 函数检查$deviceToken 是否为数组。引用:http://us3.php.net/manual/en/function.is-array.php

为此,您可能需要重写一小部分代码。所以总的来说,它看起来像这样:

if(is_array($deviceToken)) {
// Iterate over the array and call the same function with each string
return;
}

// You're code to actually send the push notification just as you have it above.

关于ios - 用于 iOS 推送通知的 PHP,有时超过 1 台设备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24423199/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com