在 OneSignal 中细分用户

Segmenting users in OneSignal

我必须在我的应用程序中添加推送通知,而 OneSignal 看起来是个不错的选择。但我有几个关于创建用户群的问题:

1) 如果我使用多个自定义标签创建区段,发送到该区段的通知是发送给所有订阅了这些标签中的任何标签的用户,还是仅发送给订阅了该区段中所有标签的用户?

2) 创建多个单例段(具有单个标签的段)是个好主意,还是创建具有多个标签的特定段更好,这些标签表示用户应订阅的主题。

一些上下文信息:

我正在为我的大学制作一个通知系统,其想法是根据需要向特定 branch/class/year/course 的学生发送通知。所以我看到的一种方法是为每种类别制作一个细分,最终的 P&C 会导致很多细分,所以我正在寻找一种更合理的方式来调整细分。

  1. If I create Segments with multiple custom tags, are the notifications sent to that segment sent to all those users who are subscribed to any of those tags or only those users who are subscribed to all the tags in that segment?

通知将发送给拥有段中所有标签的用户。 (AND 运算)。

您可以利用多个段以获得段之间的 OR 运算。

  1. Is it a good idea to create many singleton segments(segments with a single tag) or it is a better idea to create specific segments with multiple tags that represent the topics that users should be subscribed to.

如上所述,这实际上取决于用例。

I am making a Notification System for my college and the idea is to deliver notifications to the students of a particular branch/class/year/course as needed. So one way I see it is to make a Segment for each kind of category, the final P&C would result in a lot of segments, so I am looking for a more logical way to adjust the segments.

如果您通过 OneSignal API 发送通知,您可以使用 "filters" 字段根据各种标准动态定位用户。但是,要通过 OneSignal 仪表板发送消息,您似乎需要创建许多段。