我发送以下请求以获取用户状态。
[facebook requestWithGraphPath:@"me/statuses" andParams:params andDelegate:self];
然后我将收到的响应存储在一个数组中。
NSArray *resultData = [[result objectForKey:@"statuses"] objectForKey:@"data"];
if([resultData count] > 0) {
for (NSUInteger i=0; i<[resultData count] && i < 25; i++) {
[status addObject:[resultData objectAtIndex:i]];
}
}
我可以在tableview中显示状态。
cell.textLabel.text = [[status objectAtIndex:indexPath.row] objectForKey:@"message"];
如何获取每种状态的评论?
答案 0 :(得分:0)
试试这个,
https://graph.facebook.com/comments/?ids=ur_status_id_here
例如:https://graph.facebook.com/comments/?ids=268172318814_10150648188293815
答案 1 :(得分:0)