Flickr API Size enum
Published on 5 May 2014 at 01:25 by
Just for future reference, here is the Flickr API sizes as a JavaScript enum.
var flickr_sizes = {
'square': '_s',
'large_square': '_q',
'thumbnail': '_t',
'small': '_m',
'small_320': '_n',
'medium': '',
'medium_640': '_z',
'medium_800': '_c',
'large': '_b',
'large_1600': '_h',
'large_2048': '_k',
'original': '_o'
};