
Best Answer nickvivid, 18 June 2013 - 08:27 PM
I hardcoded the password protected albums in VimeoUrlBuilder.php - hope this helps anyone looking for a solution
Under
private static $_PARAM_ALBUM_ID = 'album_id';
add
private static $_PARAM_ALBUM_PW = 'password';
then around line 132 under
$params[self::$_PARAM_ALBUM_ID] = $execContext->get(tubepress_plugins_vimeo_api_const_options_names_GallerySource::VIMEO_ALBUM_VALUE);
add
$params[self::$_PARAM_ALBUM_PW] = 'album password here';
and put your password where it says album password here. keep the semiquotes
Nick
Go to the full post