我正在使用FBConnect创建一个iPhone应用程序。我可以轻松地将消息发布到用户的墙上。
我的问题是所有用户的朋友都可以看到此消息(通常)。我想禁用它;我想要它,以便用户的朋友看不到那条消息。
如何做到这一点?
NSString *feedpath = [NSString stringWithFormat:@"%@/feed",idFriend];
//NSLog(@"fappDelegate.facebooklogin.facebook is%@",appDelegate.facebooklogin.facebook);
[appDelegate.facebooklogin.facebook requestWithGraphPath:feedpath
andParams:[NSMutableDictionary dictionaryWithObject:@"I am in iphone app" forKey:@"message"]
andHttpMethod:@"POST"
andDelegate:self];
答案 0 :(得分:1)
我认为Facebook帐户的所有者为其隐私政策设置了设置,这些设置决定了谁可以看到他的留言信息。