我可以更快地提出请求吗? (脸谱图api)

时间:2012-04-18 05:42:52

标签: iphone ios facebook facebook-graph-api ios5

我在下面的代码中获取了我的朋友的异性信息。
首先,我发送了获取所有朋友ID的请求。我再次发送请求以获取朋友的信息(姓名,照片等)。
但我有350个朋友,我发送了350个请求。花1分钟真的很慢。
我可以让这个过程更快吗?

- (void)request:(FBRequest *)request didLoad:(id)result
{
if (request == requestFriends) {
    NSMutableArray *tempKeys = [NSMutableArray array];

    for (NSDictionary *dic in [result objectForKey:@"data"]) {
        [tempKeys addObject:[dic objectForKey:@"id"]];
    }

    NSMutableDictionary *params = [NSMutableDictionary dictionary];

    if ([self.myGender isEqualToString:@"male"]) {
        params = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"id,name,gender,age,location", @"field", nil];
    } else if ([self.myGender isEqualToString:@"female"]) {
        params =[NSMutableDictionary dictionaryWithObjectsAndKeys:@"id,name,age,gender,work,school", @"field", nil];
    }

    for (NSString *key in tempKeys) {
        [requestArray addObject: [delegate.facebook requestWithGraphPath:key andParams:params andDelegate:self]];
    }

    i = tempKeys.count;
} else if (request == self.myPicRequest) { //고화질 프로필 사진 받아오는 부분
    NSArray *arr = [result objectForKey:@"data"];
    for (NSDictionary *result in arr) {
        if([[result objectForKey:@"type"]isEqualToString:@"profile"]) {
            profileRequest = [delegate.facebook requestWithGraphPath:[result objectForKey:@"cover_photo"] andDelegate:self]; //프로필의 아이디로 다시 리퀘스트
        }
    }
} else if (request == self.profileRequest) {
    NSURL *url = [NSURL URLWithString:[[[result objectForKey:@"images"] objectAtIndex:3] objectForKey:@"source"]];
    UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:url]];
    CGRect rect = CGRectMake(0, 60, 360, 360); //중간부분을 크롭
    [self.candidatePicArray addObject:[self imageByCropping:image toRect:rect]];
    NSLog(@"이미지들어간다");
} else {         
    for (FBRequest *req in requestArray) {
        if (request == req) {
            if (![[result objectForKey:@"gender"]isEqual:myGender]) {
                [candidateIdArray addObject:[result objectForKey:@"id"]];
                [candidateNameArray addObject:[result objectForKey:@"name"]];

                myPicRequest = [delegate.facebook requestWithGraphPath:[NSString stringWithFormat:@"%@/albums", [result objectForKey:@"id"]] andDelegate:self];

                if ([result objectForKey:@"birth"]) {
                [candidateAgeArray addObject:[result objectForKey:@"birth"]];
                }

                if ([result objectForKey:@"Location"]) {
                [candidateLocationArray addObject:[[result objectForKey:@"Location"] objectForKey:@"name"]]; 
                }

                if ([[result objectForKey:@"work"] objectAtIndex:0]) {
                [candidateWorkArray addObject:[[[[result objectForKey:@"work"] objectAtIndex:0] objectForKey:@"employer"] objectForKey:@"name"]];
                }
                NSLog(@"girl!");
            }
            j++;
//                NSLog(@"candidateNameArray : %@", [result objectForKey:@"name"]);
        }
    }
}

NSLog(@"i = %d, j = %d", i , j);
[progressView setProgress:(float)(j/i) animated:YES]; 

if(i == j) {
    [self performSegueWithIdentifier:@"SEGUE_START" sender:nil];
}

}

2 个答案:

答案 0 :(得分:2)

关于SO的另一个问题,批量请求有一些线索:

Batch calls with Facebook Graph API & PHP

虽然它使用php,但你可能会得到一些线索。

答案 1 :(得分:2)

您不必为每位朋友发送请求,您可以一次性完成所有操作。

尝试提出以下请求:

https://graph.facebook.com?ids=iduser1,iduser2,iduser3,iduser4&fields=email,gender,age,name

这种方式要快得多。 此致

相关问题