我创建了简单的Facebook应用程序(不是游戏)。现在我想向我的Facebook用户发送通知我如何向他们发送通知。
我正在向他们发送应用请求,但它不会触发通知。如何通知用户有关应用程序请求的信息。
答案 0 :(得分: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 App Requests aren't shown on iOS devices?