我发送游戏请求内容的内容如下:
FBSDKGameRequestContent *gameRequestContent = [[FBSDKGameRequestContent alloc] init];
gameRequestContent.message = @"My message";
gameRequestContent.title = @"My title";
gameRequestContent.recipients = @[idFacebook];
gameRequestContent.actionType = FBSDKGameRequestActionTypeNone;
FBSDKGameRequestDialog* dialog = [[FBSDKGameRequestDialog alloc] init];
dialog.content = gameRequestContent;
dialog.delegate = self;
[dialog show];
收件人可以通过https://www.facebook.com/games/activity查看邀请,但不会在右上方的facebook图标中收到通知。那是为什么?
在Facebook应用程序中,我创建了iOS应用程序和画布游戏。
答案 0 :(得分:1)
在任何人可以在iPhone上观看通知之前,您需要公开您的应用。