2010-07-30 61 views
1

在我的应用程序中,我尝试使用Facebook Api方法获取朋友列表Friends.getLists。 我必须使用这个Api,因为我在我的应用程序中使用了这个Api的另一种方法,它们工作正常。所以我不能使用其他方法。此代码返回刚才什么:IPhone Facebook Api Friends.getLists不会返回任何内容

[[FBRequest requestWithSession: _facebookSession delegate: self] call: @"facebook.Friends.getLists" params: nil]; 

回答

1

您需要使用facebook.friends.get代替,然后facebook.users.getInfo让每一个用户的名字。

相关问题