我正在使用此代码发布到我的墙上,同时我想标记给我的specefic朋友,但不知道我如何使用Fbgrapgh API请帮助我。
[variables setObject:messageTextView.text forKey:@“message”]; [graphref doGraphPost:[NSString stringWithFormat:@“me / feed”,self.friendID] withPostVars:variables]; 感谢
答案 0 :(得分:1)
要标记某人,您必须使用FbDialogs。您不能以FB对话框以外的任何方式在状态更新中标记您的朋友。
使用FBDialog共享状态请参阅此示例代码
[FBDialogs presentShareDialogWithLink:nil handler:^(FBAppCall *call, NSDictionary *results, NSError *error) {
if(error) {
NSLog(@"Error: %@", error.description);
} else {
NSLog(@"Success!");
}
}];
取自https://developers.facebook.com/ios/share-dialog/#statusupdate