我在使用facebook SDK方面很陌生。
我在Facebook上有一个racin应用程序,我想挑战其他朋友。还有尚未安装该应用程序的朋友。
我在脸书开发者页面上读到的
牵线搭桥
请记住,请求可以发送给任何已经 安装了游戏;
但是为了吸引更多用户,我也想向好友列表中的任何用户发送挑战请求。
我是否必须向尚未安装应用程序的人发送应用程序请求?
有人在Facebook上玩匹配游戏吗?也许网络上的一个不错的教程?FB文档对我来说非常肤浅。
提前致谢
在您的应用程序中导入 FacebookSDK 并使用以下代码。
[FBWebDialogs presentRequestsDialogModallyWithSession:nil
message:[NSString stringWithFormat:@"I just smashed %d friends! Can you beat it?", nScore]
title:@"Smashing!" parameters:params handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error)
{
if (error)
{
// Case A: Error launching the dialog or sending request.
NSLog(@"Error sending request.");
} else
{
if (result == FBWebDialogResultDialogNotCompleted) {
// Case B: User clicked the "x" icon
NSLog(@"User canceled request.");
} else {
NSLog(@"Request Sent.");
}
}}
friendCache:nil];
}