在我的应用程序中,我尝试使用Facebook Api方法Friends.getLists
获取朋友列表。
我必须使用这个Api,因为我在我的应用程序中使用了这个Api的其他方法,它们工作正常。所以我不能用别人的方法。此代码只返回任何内容:
[[FBRequest requestWithSession: _facebookSession delegate: self] call: @"facebook.Friends.getLists" params: nil];
答案 0 :(得分:1)
您需要改为使用facebook.friends.get
,然后使用facebook.users.getInfo
来获取每个用户的名称。