0

我正在尝试在我所有的朋友墙上发布消息

以下是我找到的代码

 [_facebook requestWithGraphPath:@"friend_ID/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];

最大的问题是我怎么能得到friend_id?是他们的电子邮件吗?或者如何获取我的朋友 ID 的所有列表

4

1 回答 1

2
[_facebook requestWithGraphPath:@"me/friends" andDelegate:self];

将请求您的朋友列表,前提是您已正确验证。

然后实现您的委托方法以提取您需要的 id。

- (void)request:(FBRequest *)request didLoad:(id)result {
    items = result[@"data"];
    for (NSDictionary * friend in items) {
        long long friendId = [friend[@"id"] longLongValue];
        // Do something with the Id
    }
}
于 2013-01-27T19:11:27.673 回答