Some of us don't have the luxury of updating a web app. I'm using the Picasa API in a mobile app, and, although I published a workaround version last night, there's no way for me to force the users to upgrade. I'm sure any fix on Google's side has to pass through lots of QA, but we would greatly appreciate a fast resolution.
On May 26, 1:42 pm, Scott <[email protected]> wrote: > Users of my PWA+PHP wordpress plugin reported this problem to me > today. It's plain PHP, so the workaround I used was to check the > dimensions of the MEDIA:THUMNAIL element before sending it to the > browser. Maybe this'll help somebody... > > $GALLERY_THUMBSIZE = 144 // Thumbnail size you > want... > ... > case "MEDIA:THUMBNAIL": > $tnht = $xml["attributes"]["HEIGHT"]; > $tnwd = $xml["attributes"]["WIDTH"]; > > // Make sure we've got the right "thumbnail" > if (($tnht == $GALLERY_THUMBSIZE) || ($tnwd == > $GALLERY_THUMBSIZE)) { > $thumb = trim($val["attributes"]["URL"] . "\n"); > } > break; > > Scott > > On May 26, 9:21 am, mdj <[email protected]> wrote: > > > > > > > > > I'm sure you guys are frantically working on fixing the issue but do > > you have any ETA when this will be? > > > The date of this will probably determine whether alot of people need > > to put in your suggested workarounds. -- You received this message because you are subscribed to the Google Groups "Google Picasa Web Albums API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-picasa-data-api?hl=en.
