作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将一些带有负载的自定义数据发送到 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/
我有installed本地 apache zeppelin 使用此 link同一安装中的示例显示了 r 的用法,但是当我运行其中任何一个时,我得到:“r interpreter not found”。
我正在使用 Spark 和 Zeppelin 执行自己的第一步,但不明白为什么此代码示例不起作用。 第一 block : %dep z.reset()
我是一名优秀的程序员,十分优秀!