我已按照此处的教程[{3}}
实施了应用邀请我的应用中有一个触发以下代码的按钮。
- (IBAction)inviteFriends:(id)sender
{
FBSDKAppInviteContent *content =[[FBSDKAppInviteContent alloc] init];
content.appLinkURL = [NSURL URLWithString:@"https://myurl.com"];
// Present the dialog. Assumes self is a view controller
// which implements the protocol `FBSDKAppInviteDialogDelegate`.
[FBSDKAppInviteDialog showFromViewController:self withContent:content delegate:self];
}
这成功启动了选择朋友的屏幕。我挑了几个朋友送了。我有几个设备,这些朋友正在使用FB应用程序。没有推送通知给他们。当我深入了解更多>应用程序>应用程序邀请时,我确实在那里看到邀请。
为什么没有通知?