1

从 facebook iOS API 文档中,我创建了两种方法来请求图表中的朋友列表或当前登录用户的详细信息。

- (IBAction)showMyFriends:(id)sender {
    AppDelegate *delegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
    [[delegate facebook] requestWithGraphPath:@"me/friends" andDelegate:self];
    NSLog(@"Getting friends list");
}
- (IBAction)showMyDetails:(id)sender {
    AppDelegate *delegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
    [[delegate facebook] requestWithGraphPath:@"me" andDelegate:self];
    NSLog(@"Getting my info");
}

到目前为止听起来很合理。响应这些调用的委托方法是:

- (void)request:(FBRequest *)request didLoad:(id)result
{
    NSLog(@"Got a request");

// Print out friends
//    NSArray * items = [NSArray alloc];
//    items = [(NSDictionary *)result objectForKey:@"data"];
//    for (int i=0; i<[items count]; i++) {
//        NSDictionary *friend = [items objectAtIndex:i];
//        long long fbid = [[friend objectForKey:@"id"]longLongValue];
//        NSString *name = [friend objectForKey:@"name"];
//        NSLog(@"id: %lld - Name: %@", fbid, name);
//    }


// Print out self username
    NSString *username = [result objectForKey:@"name"];
    NSLog(@"Username is %@", username);
    helloGreeting.text = [NSString stringWithFormat:@"Hello %@", username];

}

问题:在 中didLoad,您如何检查当前调用与哪个图形请求相关?例如,在上面的代码中,我要么想打印出朋友列表,要么打印出用户名,所以我想我需要根据请求类型将代码包装在某些 case/switch 语句中。

我在 API 上找不到任何明显的东西,确保只执行相关响应代码的最佳方法是什么?

4

3 回答 3

3

如上所述,您可以检查请求对象以检查哪个请求生成了响应。您可以使用请求对象的 url 属性更方便地检查使用了哪个请求。

例如获取好友列表的请求

[facebook requestWithGraphPath:@"me/friends" andDelegate:self];

您可以检查请求对象的 url:

https://graph.facebook.com/me/friends

以下请求 didLoad 的实现将检测好友列表请求并遍历每个好友。

- (void)request:(FBRequest *)request didLoad:(id)result {

    // Friends request
    if([request.url rangeOfString:@"me/friends"].location != NSNotFound) {

        NSArray *friends = [result objectForKey:@"data"];
        for (int i=0;i<friends.count;i++) {

            NSDictionary *friend = [friends objectAtIndex:i];
            //NSLog([friend objectForKey:@"name"]);

        }  
    }
}
于 2012-07-11T18:02:23.587 回答
1

这就是您在“didLoad”中获得 FBRequest 变量的原因。您可以使用它来检查原始请求。这是一种废话解决方案,但至少你可以检查它是什么。

于 2012-06-08T14:33:11.157 回答
0

实际上看起来 Hackbook 正在基于一个名为“currentAPICall”的 int 进行切换,为每个请求设置一个 int,然后在返回时检查它。所以这一切都在主线程中完成,我猜。

我也有不同类型的不同结果对象。我最终查看了结果并确定它是来自 /me 请求还是来自 /home。我有各种“如果”来查看返回的对象。无论如何都不理想。IE

if([result objectForKey:@"first_name"]){
    // back from getMe()
}

if ([result objectForKey:@"data"]) {
    // more checking here- I have two calls that return a data object
}

更新:这不适用于异步请求,其中大多数是,所以我使用上面的方法,检查 request.url,而不是,这就像一个魅力。

于 2012-06-11T07:04:40.607 回答