Jump to content


These Forums Are Now Read-Only


For TubePress support, please post a question here or open a support ticket and we will be glad to assist.


Photo

Private videos in Vimeo pro


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


  • Please log in to reply
2 replies to this topic

#1 Andrew Walker

Andrew Walker

    Member

  • Members
  • PipPip
  • 23 posts

Posted 01 December 2012 - 05:51 AM

I absolutely love the way my videos look on our website by using a vimeo album and tubepress- great work. Now I've got Vimeo pro and I only want my videos to be viewable through my website. However, when I set the videos as private in Vimeo they disappear from my tubepress instance. I've emailed Vimeo support but so far no answer.

Is this something that there is a solution or work around for? If its in the pro version I'm more than happy to pay for it!

Regards,
Andrew

#2 eric

eric

    Lead Developer

  • TubePress Staff
  • 2787 posts

Posted 01 December 2012 - 11:25 PM

Hi Andrew,

One of the TubePress developers is finishing up this functionality now, and it will go out with the release of TubePress 3.0.0 (coming out this month) as a low-priced premium add-on. I can't give you an exact date, but it will be before the new year.

Vimeo seems to have dropped all email and forum support for their API. We'll try our best to assist you here, so let us know if you have any other questions. Thanks!

#3 nickvivid

nickvivid

    Newbie

  • Members
  • Pip
  • 3 posts

Posted 18 June 2013 - 08:27 PM   Best Answer

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