rupGo
rupGo

Reputation: 410

retrieve facebook photo albums

is there a way or a script to download all the photos from a facebook album, i have more than 3000 photos to download i cant go one by one... thanks in advance

Upvotes: 0

Views: 1004

Answers (2)

eiran
eiran

Reputation: 1388

i have a little project i made in the subject, resembling elcpicker.

here's the link: http://www.paladev.com/Archive.zip

in order to open that controller, do something like that: -(IBAction)launchFBPicker {

FBAlbumChooser *c = [[FBAlbumChooser alloc] initWithNibName:@"FBAlbumChooser" bundle:nil];     
FBPickerController* navController = [[FBPickerController alloc] initWithRootViewController:c];
navController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:navController animated:YES];

}

hope that helps

good luck!

Upvotes: 0

Matt Bishop
Matt Bishop

Reputation: 1007

Please see the Graph API documentation for albums and photos. There is no API for doing what you're asking (and I would say it's usually discouraged) but you could write a script that uses the above two methods to access each source image.

Upvotes: 2

Related Questions