2

我创建了简单的 Facebook 应用程序(不是游戏)。现在我想向我的 Facebook 用户发送通知,我该如何向他们发送通知。

我正在向他们发送应用请求,但它不会触发通知。如何通知用户有关应用程序请求。

4

1 回答 1

0

获取 Facebook sdk。信息可以在这里找到:https ://developers.facebook.com/docs/ios/getting-started/

你可以试试:

NSMutableArray* friendIds = [NSMutableArray array];
for(FacebookFriend* friend in self.selectedContacts) {
    [friendIds addObject:friend.facebookId];
} //All I am doing is creating an array of Facebook Ids I want to send the request to

NSString* recipients = [friendIds componentsJoinedByString:@","]; //this is a comma separated string of facebookIds you want to send the request to


[FBWebDialogs presentRequestsDialogModallyWithSession:[FBSession activeSession] message:@"message" 
    title:@"The Title" 
    parameters:@{@"to":recipients} 
    handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error) {

        }];

这将创建一个对话框,要求您确认是否要发送请求。一旦你确认它应该发送。

如果这不起作用,请查看以下内容:Facebook 应用程序请求未显示在 iOS 设备上?

于 2014-06-19T16:17:32.150 回答