我正在创建一个iOS应用程序,我想获取Facebook用户喜欢的所有页面的列表。我已经使用了许可' user_likes'使用Facebook Graph API。现在我要显示它。
请参阅:https://developers.facebook.com/docs/graph-api/reference/v2.2/object/likes
请帮助。
答案 0 :(得分:0)
我得到了答案,这就是我实现目标的方式:
//Page likes
/* make the API call */
[FBRequestConnection startWithGraphPath:@"me/likes?limit=10" parameters:nil
HTTPMethod:@"GET"
completionHandler:^(
FBRequestConnection *connection,
id result,
NSError *error
) {
/* handle the result */
NSLog(@"Likes are:\n\n%@",result);
}];
NSString *fbCountry=[