photo.getAlbumImage().getSource() for a org.springframework.social.facebook.api.Photo used to give the album version of an image. i.e. ending in "_a.jpg". As of very recently in the BUILD_SNAPSHOT, it is returning the normal or getSourceImage() "_n.jpg" result.
I expect that this code methodology for Photo is broken:
this.sourceImage = images.get(i++);
this.albumImage = images.get(i++);
this.smallImage = images.get(i++);
this.tinyImage = images.get(i++);
given that there seem to be a bunch more images in the standard facebook photo result now:
https://graph.facebook.com/98423808305


Reply With Quote