The way I do this is almost the same as Ziminji does, but in the didLoad method:
- (void)request:(FBRequest *)request didLoad:(id)result { NSLog(@"Facebook request %@ loaded", [request url]);
So basically you only need to check the URL to which you sent the request, and you can also check the parameters for this request. Then you can distinguish one from the other.
source share