2016-06-28 70 views
3

我在一個信號上創建了一個項目。OneSignal組通知

我可以發送到我的手機上的php通知。

問題出現時它到達多個通知。新通知取代了以前的通知(尚未閱讀)。

你如何獲得反饋說Android有2條未讀通知?

該陣列可我送:

$fields = array(
    'app_id' => "XXXXXXXXXXXXXXXXXXXXXX", 
    'included_segments' => array('All'), 
    'data' => array("foo" => "bar"), 
    'headings' => array("en" => "TEST"), 
    'contents' => $content, 
    'android_visibility' => '0', 
    'priority' => '10', 
    'android_group' => '', 
    'android_group_message' => array("en" => "$[notif_count] message"), 
    'url' => "http://www.google.it" 
); 

謝謝!

+0

'$ [notif_count] message'是什麼? – C2486

+0

嗨在這裏找到它https://documentation.onesignal.com/v2.0/docs/notifications-create-notification在步驟:android_group_message –

+0

好吧我認爲你必須逃避這種使用'「\ $ [notif_count]消息」 – C2486

回答

1

使用單引號,或者如果你想使用$爲字符逃離這裏$

'android_group_message' => array("en" => "\$[notif_count] message"), 

OR

'android_group_message' => array("en" => '$[notif_count] message'), 
+0

這是一樣的,新的通知取代了previus通知。是對的寫:''android_group'=>'''?? –

1

您可以嘗試值設置爲 'android_group',像這樣:

'android_group' => 'sameGroup'