gpt4 book ai didi

php - 是否可以将 iOS 推送通知发送到两个不同的应用程序?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:16:35 25 4
gpt4 key购买 nike

我的情况是,我有一个服务器需要向两个不同的客户端应用程序发送推送通知,但不知道它是哪个应用程序。

我有两个不同的 iOS 应用程序(2 个不同的包标识符),并且我有两套不同的所有必要认证,每个应用程序一个。

我有一个 PHP 代码可以接收 deviceToken 和要推送的消息。该代码基于 reywenderlich 的 SimplePush,可在此处找到:http://www.raywenderlich.com/32960/apple-push-notification-services-in-ios-6-tutorial-part-1

唯一需要更改的部分是每个应用程序都不同的 ck.pem 文件。

我能想到的一个解决方案是尝试两个不同的 ck.pem 文件,如果一个失败,请尝试另一个。

任何人都可以帮助我在此 PHP 代码中实现它吗?或者是否有更好的解决方案建议?

<?php

// Put your device token here (without spaces):
//$deviceToken = 'a6a543b5b19ef7b997b2328';

$deviceToken = $_GET["device_token"];
$message = $_GET["message"];
$elementID = $_GET["element_ID"];

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

// Put your alert message here:
//$message = 'My first push notification! yay';

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

$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'
);

// Create the extra data
$body['extra'] = array(
'element_id' => $elementID
);


// 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;

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

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

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

更新:

解决方案是在最后添加另一段代码,将相同的有效负载发送到第二个服务器:

//connecting to second server

$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'SecondCk.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 to note server: $err $errstr" . PHP_EOL);

// connected to server sending note msg
$result = fwrite($fp, $msg, strlen($msg));

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

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

最佳答案

我不知道如何在 PHP 中执行此操作,但您应该在打开第一个连接之前简单地创建有效负载主体 + 二进制通知,然后创建 2 个连接(或循环连接,如果可能)到 Apple 的推送服务器和向他们发送相同的二进制通知。

最好的祝福,
加布里埃尔富冢

关于php - 是否可以将 iOS 推送通知发送到两个不同的应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27637299/

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