Not sure if this is a bug, or I need to adjust my FQL query. Sometimes, the width & height dimension of the photo record is inaccurate.
From Facebook's own example:
SELECT pid FROM photo WHERE aid="20531316728_324257
If I run
SELECT pid, images FROM photo WHERE aid="20531316728_324257"
On the first record, in the [0] position of images (the largest), I get
{ "height": 1373, "width": 2048, "source": "https://fbcdn-sphotos-g-a.akamaihd.net/hphotos-ak-ash3/s2048x2048/168119_10150146071831729_5116892_n.jpg" },
You'll notice that the image in the URL is not 2048x1373. However sometimes this is accurate, for other photos.
How can I consistently retrieve the largest copy of a photo and its correct width & height?