1

嗨,我正在使用 FBConnect 在用户墙上发帖.... 但是有没有办法可以在朋友墙上发帖?

任何帮助表示赞赏

4

2 回答 2

1

由于 facebook ios 6 中的许多错误和许多关于 Open Graph API 的负面评论。facebook 删除了“通过 API 发布到朋友墙”。只能使用 ios 5 的 fbconnect。

 NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                           @"100004925467891", @"to",
                           @"http://pri.com/pit.png", @"picture",
                           @"http://pr.com", @"link",
                           @"Data", @"caption",
                           @"data",@"description",
                           @"Birthday Reminder",@"name",nil];
[[delegate facebook] dialog:@"feed" andParams:params andDelegate:self];

但是,如果你发布到自己的墙 Open Graph API 仍然有效。

于 2013-03-07T13:13:07.293 回答
0

我不相信您可以从 API 发布到墙上,但您可以发布到他们的Stream

于 2010-10-01T19:37:38.333 回答