特定用户发布时解析推送通知

时间:2015-02-09 15:38:29

标签: ios parse-platform push-notification

我最近在Parse更新了要配置后端服务器的应用程序。他们使用用户名,Twitter凭据或Facebook凭据登录。从那里,他们可以制作一些帖子,只是在我在Parse仪表板中设置的对象上添加一行。

我知道Parse有一些推送通知功能,但我想知道一个特定用途。有没有办法让用户跟随'另一个用户,并在每次用户发布内容时收到Push Notification?如果是这样,是否可以通过Native Parse和iOS函数处理,或者必须为此设置Cloud-Code

1 个答案:

答案 0 :(得分:2)

这可以通过客户端推送实现(如果禁用,您必须在Parse上的应用设置中启用)。

然后,您可以使用此代码从创建帖子的用户的设备向其所有关注者发送推送:

// Send a notification to all devices subscribed to the "Giants" channel.
PFPush *push = [[PFPush alloc] init];
[push setChannel:/* Set the channels here */];
[push setMessage:@"User XYZ just posted something"];
[push sendPushInBackground];

https://www.parse.com/docs/push_guide#sending/iOS