We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do you get a higher resolution image from Facebook? I tried changing this line to get the larger image size from the Facebook Graph
- (void)getPhotos:(OLFacebookPhotosForAlbumRequestHandler)handler { if ([FBSDKAccessToken currentAccessToken]) { // connection is open, perform the request [UIApplication sharedApplication].networkActivityIndicatorVisible = YES; NSString *graphPath = [NSString stringWithFormat:@"%@/photos?fields=picture.type(large),source,images&limit=100", self.album.albumId];
Also Tried
NSString *graphPath = [NSString stringWithFormat:@"%@/photos?fields=picture?type=large,source,images&limit=100", self.album.albumId];
The text was updated successfully, but these errors were encountered:
Yeah is it possible to get higher resolution?
Sorry, something went wrong.
@bcbucs13, @cyanlabsid, OLFacebookImage object contains large image URL in fullURL field.
- (void)facebookImagePicker:(OLFacebookImagePickerController *)imagePicker didSelectImage:(OLFacebookImage *)facebookImage { [[SDWebImageManager sharedManager] downloadImageWithURL:facebookImage.fullURL options:SDWebImageHighPriority progress:nil completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) { // process image }]; }
No branches or pull requests
How do you get a higher resolution image from Facebook? I tried changing this line to get the larger image size from the Facebook Graph
Also Tried
The text was updated successfully, but these errors were encountered: