组密钥信号推送通知

时间:2016-06-29 16:38:08

标签: php android notifications onesignal

在一个信号上创建了一个项目。

我可以通过手机发送php通知。

问题来自多个通知。新通知将替换先前的通知(尚未阅读)。

你怎么知道Android有2个未读通知?

我尝试编写相同的android_group,但通知从未堆叠,最新的继续替换了previus。

这是我的代码:

<?php
function sendMessage(){
$content = array(
  "en" => 'text message test'
  );

$fields = array(
  'app_id' => "XXxxxxXX-xxxxXX-XXxxX-Xxxx-XxxxXXx",
  'included_segments' => array('All'),
  'data' => array("foo" => "bar"),
  'headings' => array("en" => "Test message!!"),
  'android_group'  => 'TESTGROUP',
  'android_group_message' => array("en" => "message"),
  'contents' => $content
);

$fields = json_encode($fields);
print("\nJSON sent:\n");
print($fields);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://onesignal.com/api/v1/notifications");
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json',
                       'Authorization: Basic xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);

$response = curl_exec($ch);
curl_close($ch);

return $response;
}

$response = sendMessage();
?>

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

用于启用通知堆叠的

android_group仅适用于Android应用。

如果您使用适用于Android的Chrome进行网络推送,则可以看到您所看到的更换行为,并且无法配置。 Chrome for Desktop和Firefox上的行为相同。

另请注意android_group_message应包含$ [notif_count],以便查看未读邮件的数量。例 array("en" => "You have $[notif_count] new messages")