i have tied lot to get the uploaded images fom the facebok to a UITableviewcontroller
,but i get the profile picture only.i have a image cropping application which can get images from library,from camera,fromfacebook.so when the user tap the Facebook button,it will authenticate and if the authentication success,it will strive the photos from Facebook to UITableview.Is that possible if yes how to do this.
I do have this code:
NSString *url = [[NSString alloc] initWithFormat:@"graph.facebook.com/%@/picture",objectId];
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:url]]];
But I'm not sure What is objectID
and where can i get it?
Please help me.Thanks in advance.