我的代码从Facebook获取消息..此代码获取评论以及id喜欢和评论喜欢..我需要单独获取名称和评论.. 提前谢谢请帮助我...
NSString *url1 = [NSString stringWithFormat:@"10203405506644140/comments"];
[FBRequestConnection startWithGraphPath:url1
parameters:NULL
HTTPMethod:@"GET"
completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
FBGraphObject *postDetails = result;
NSLog(@"--comments--->%@",postDetails);
答案 0 :(得分:0)
您可以在循环中通过objectForKey:@“message”从结果中获取注释消息。 要在接收器对象中引用该字段,请通过此链接的iOS部分。 https://developers.facebook.com/docs/graph-api/reference/object/comments/