如何在React Native中使用onesignal向特定组发送推送通知?

时间:2018-12-12 10:05:48

标签: android firebase react-native onesignal

我在使用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发送到特定组。

谢谢

0 个答案:

没有答案