我在使用onesignal时遇到问题,我尝试使用React Native创建聊天应用程序,并且使用onesignal进行推送通知,可以发送给特定用户,但是在将推送通知发送到特定组时遇到问题,这发送给特定用户的功能:
createNotif() {
var message = {
app_id: "xxxx-xxxx-xxxx.....",
contents: {"en": "English Message"},
include_player_ids: ["yyyy-yyyy-yyy....."],
android_group: "mychat",
android_group_message: {"en": "You have $[notif_count] new messages"}
};
fetch('https://onesignal.com/api/v1/notifications', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json; charset=utf-8',
},
body: JSON.stringify(message),
});
}
请任何人给我一个示例,说明如何将push notif发送到特定组。
谢谢