开发者

retrieve facebook photo albums

开发者 https://www.devze.com 2023-02-20 08:07 出处:网络
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...

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!

0

精彩评论

暂无评论...
验证码 换一张
取 消