Quote:
Originally Posted by Tralala
amykhar's hack seems to require phpFlickr 1.6.1 (not 2.0) to work. When I merge/replace the files required by this one to work to that, amykhar's hack no longer works. I get an error at the top of the Member Info page.
What's the best way to get BOTH of these flickr integration tools to work? I'm using vB 3.6.4, if it matters.
|
After some investigation it appears the flickr api has changed so that people_findByUsername now returns an array instead of the userid. The userid can than be retrieved via 'id' in the array.
Amy's code:
PHP Code:
// Find the NSID of the username inputted via the form
$nsid = $f->people_findByUsername($userinfo['field5']);
// Get the friendly URL of the user's photos
$photos_url = $f->urls_getUserPhotos($nsid);
// Get the user's first 5 public photos
$photos = $f->people_getPublicPhotos($nsid, NULL, 5);
Updated code:
PHP Code:
// Find the NSID of the username inputted via the form
$nsid = $f->people_findByUsername($userinfo['field5']);
// Get the friendly URL of the user's photos
$photos_url = $f->urls_getUserPhotos($nsid['id']);
// Get the user's first 5 public photos
$photos = $f->people_getPublicPhotos($nsid['id'], NULL, 5);
The code in question is in amy's "Get Flickr Pictures" plugin.
I'd post in amy's thread if you want her to fix it, or you can just do the edit yourself. Amy's hack is marked as unsupported, but she's around a lot, so who knows.