我使用 FQL 查询来一次检索好友列表:
-(void)fetchSaveUserFriendDetails
{
NSString* query = [NSString stringWithFormat:@"SELECT uid,name,birthday_date FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me())"];
// Set up the query parameter
NSDictionary *queryParam = [NSDictionary dictionaryWithObjectsAndKeys:
query, @"q", nil];
// Make the API request that uses FQL
[FBRequestConnection startWithGraphPath:@"/fql"
parameters:queryParam
HTTPMethod:@"GET"
completionHandler:^(FBRequestConnection *connection,
id result,
NSError *error) {
if (!error)
{
NSLog(@"result is %@",result);
NSArray *resultData = [result objectForKey:@"data"];
if ([resultData count] > 0) {
for (NSUInteger i=0; i<[resultData count] ; i++) {
[self.friendsDetailsArray addObject:[resultData objectAtIndex:i]];
NSLog(@"friend details are %@",friendsDetailsArray);
}
}
}
}];
//Save friends to database stuff
..................
}
我得到以下输出:
我已经浏览了Facebook Developers FQL 查询的官方文档,但我无法找出如何解析数据。
我尝试了以下方法来解析检索到的数据:
NSString *jsonString = [[NSString alloc] initWithData:result encoding:NSUTF8StringEncoding];
NSDictionary *jsonValue = [jsonString JSONValue];
NSArray *values = [jsonValue objectForKey:@"friendinfo"];
其中结果以 JSON 格式保存所有朋友数据,但出现以下错误:
-JSONValue failed. Error is: Unexpected end of input
更新信息
我正在尝试解析所有检索到的数据(最终是 JSON 格式)并将所有 Facebook 朋友详细信息保存到我的数据库中。所有检索和保存到 db 部分的实现都是在 Facebook Sync 按钮操作中完成的。
需要一些帮助,任何帮助都会受到极大的赞扬,谢谢:)