当特定用户 Post 时解析推送通知
Parse Push Notifications When Specific Users Make Post
我最近更新了一个应用程序,要在 Parse 上配置后端服务器。他们使用用户名、Twitter 凭据或 Facebook 凭据登录。从那里,他们可以制作一些 'posts',这只是向我在 Parse 仪表板中设置的对象添加一行。
我知道 Parse 具有一些推送通知功能,但我想知道一种具体用途。有没有办法让用户 'follow' 另一个用户,并在该用户每次发布内容时收到 Push Notification
?如果是这样,是否可以通过 Native Parse 和 iOS 函数处理,或者必须为此设置 Cloud-Code
?
这可以使用客户端推送来实现(您必须在 Parse 的应用设置中启用它,以防它被禁用)。
然后您可以使用此代码从创建 post 的用户的设备向其所有关注者发送推送:
// 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];
我最近更新了一个应用程序,要在 Parse 上配置后端服务器。他们使用用户名、Twitter 凭据或 Facebook 凭据登录。从那里,他们可以制作一些 'posts',这只是向我在 Parse 仪表板中设置的对象添加一行。
我知道 Parse 具有一些推送通知功能,但我想知道一种具体用途。有没有办法让用户 'follow' 另一个用户,并在该用户每次发布内容时收到 Push Notification
?如果是这样,是否可以通过 Native Parse 和 iOS 函数处理,或者必须为此设置 Cloud-Code
?
这可以使用客户端推送来实现(您必须在 Parse 的应用设置中启用它,以防它被禁用)。
然后您可以使用此代码从创建 post 的用户的设备向其所有关注者发送推送:
// 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];