gpt4 book ai didi

ios - 使用解析 [Parse IOS] 从移动设备向特定用户发送推送通知

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:04:27 27 4
gpt4 key购买 nike

我已经在安装类中保存了用户指针。 Web 后端显示 0 个订阅者 Response

我正在使用以下代码发送通知

 PFQuery *qry = [PFUser query];
[qry getObjectWithId:friendObject.objectId]; //friend object is ok like @"Fefl5x7nhl"

PFQuery *pushQuery = [PFInstallation query];
[pushQuery whereKey:@"user" matchesQuery:qry];

// Send push notification to query
PFPush *push = [[PFPush alloc] init];
NSString *msgString=[NSString stringWithFormat:@"%@ :%@",
[newMessage objectForKey:@"userName"],
tfEntry.text];
[push setQuery:pushQuery]; // Set our Installation query
NSDictionary *data = [NSDictionary dictionaryWithObjectsAndKeys:
msgString, @"alert",
@"ursound.caf", @"sound",
@"Increment", @"badge",
// @"Optionally a type was set", @"type",
nil];
[push setData:data];
[push sendPushInBackground];

Installation class我的安装类确实有这个用户指针( friend 对象),逻辑上它应该是通知的接收者。

我错过了什么吗?任何建议都会很棒。感谢您抽出宝贵时间

最佳答案

只要你有Installation上的专栏类名为 user那是类型 Pointer<My_User>并且您实际上已经填充了它,您的代码应该可以工作。

推送通知文档中有一节讨论如何将数据添加到 Installation类:

https://parse.com/docs/push_guide#sending-queries/iOS

关于ios - 使用解析 [Parse IOS] 从移动设备向特定用户发送推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25160595/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com