Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to get all photos from the different albums of a user. So I write a request me/albums then in didLoad I get an array of albums, which I can use the id of each album to issue a new request albumId/photos but how should I do that? Should I add the request in the didLoad, but then, how would I know them apart?

share|improve this question

2 Answers

Ok this is how I do it might not be the best way to go about it but it works. In the did load

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

NSString *requestType =[request.url stringByReplacingOccurrencesOfString:@"https://graph.facebook.com/" withString:@""];
NSLog(@"request %@",requestType); }

Now the requestType would be either me/albums or albumId/photos. Put in a couple a conditional if-statements and you are good to go. And yes you can add the new request for fetching photos from the albums in the didLoad in the if condition that matches me/albums (meaning you got some result for that request ie the albums array). The next time you hit the didLoad it would be for the photos in the albums. Hope that helps.

share|improve this answer
Thank you, I will use that if nobody else has a better approach:) – LuckyLuke Aug 30 '11 at 21:18
1  
Now that I think of it, it appears to be the only approach since the only possible way to determine the nature of the result is to inspect the request. Although i'd be very interested to find out a better approach to this too. :) – bizsytes Aug 30 '11 at 21:21
If the delegate method would have taken a block it would be pretty:) – LuckyLuke Aug 30 '11 at 21:25

you could also keep the refs to the FBRequest instance returned by each requestWithGraphPath call and match them with the ref. you get when the delegate methods are called back.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.