gpt4 book ai didi

php - 使用 PHP 中的 Urban 飞艇自定义 iOS 负载

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

我正在尝试将一些带有负载的自定义数据发送到 iOS 设备。我使用以下代码成功地将推送发送到所有设备,但我需要发送一些额外的数据。我找不到任何关于 Urban Airship 的文件,我尝试的一切都给我错误。

代码:

     $contents = array();
$contents['badge'] = "+1";
$contents['alert'] = $message;
$contents['sound'] = "cat.caf";
$notification = array();
$notification['ios'] = $contents;
$platform = array();
array_push($platform, "ios");

$push = array("audience"=>"all", "notification"=>$notification, "device_types"=>$platform);

$json = json_encode($push);

$session = curl_init(PUSHURL);
curl_setopt($session, CURLOPT_USERPWD, APPKEY . ':' . PUSHSECRET);
curl_setopt($session, CURLOPT_POST, True);
curl_setopt($session, CURLOPT_POSTFIELDS, $json);
curl_setopt($session, CURLOPT_HEADER, False);
curl_setopt($session, CURLOPT_RETURNTRANSFER, True);
curl_setopt($session, CURLOPT_HTTPHEADER, array('Content-Type:application/json', 'Accept: application/vnd.urbanairship+json; version=3;'));
$content = curl_exec($session);

最佳答案

经过一番研究,我得出了这一点。在代码的“内容”部分添加以下行:

$contents['extra'] = array("message"=>"another message");

这应该使您能够随推送一起发送额外的自定义数据。

关于php - 使用 PHP 中的 Urban 飞艇自定义 iOS 负载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25591230/

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