解析云代码以向用户组发送推送通知

Parse Cloud Code to send push notification to group of users

我想在我的数据更改时向关系用户发送推送通知。例如我有一个组,它有 8 个成员。 所以我需要用云 code.what 向这 8 个成员发送推送通知,我应该怎么做?

谢谢

所以输入别人的答案这个linkCloud Code Push Notification Query to Array of PFUsers

所以假设您更新或添加一个新行到您的 class 之一,class 将有一个用户对象 ID 的数组,然后在云代码中保存后您将按照上面列出的示例 link。

可能会帮助你。

你也可以看看channels for the Installation Class

您可以从客户端向此频道和您的 8 个用户发送推送。

订阅巨人频道的用户的小代码示例

// Send a notification to all devices subscribed to the "Giants" channel.
PFPush *push = [[PFPush alloc] init];
[push setChannel:@"Giants"];
[push setMessage:@"The Giants just scored!"];
[push sendPushInBackground];

同样,此示例在上面的 link 中,因此您可能会走那条路。