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 c开发者_C百科ant go one by one... thanks in advance
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.
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!
精彩评论