php - Vimeo - search description and tags - Pro user, private videos -


i vimeo pro user videos set private can viewed via specific ip address. have created front end application displaying videos includes search function using vimeo api.

the search returns videos based upon title not search videos’ tags or description. using following php code along vimeo’s php library:

$query = 'search term';  $vimeo = new vimeo\vimeo($app_id, $app_secret, $token);  //get video list $args = array(     'per_page'      => 5, // 50 max     'page'          => $page,     'query'         => $query,     'sort'          => $sort,     'direction'     => 'desc',     'filter'        => 'cc' ); $results = $vimeo->request('/me/videos', $args); 

i need able search via tags , description make application viable.

does know solution or not possible?

thanks in advance

the default on site search not search through private videos. because of this, offer less powerful search private pro users. search not support description or tags.

we plan on expanding our more powerful search system, can not assure timeframe.

your best bet @ moment index data in own search service (such solr or elasticsearch).


Comments

Popular posts from this blog

java - Plugin org.apache.maven.plugins:maven-install-plugin:2.4 or one of its dependencies could not be resolved -

Round ImageView Android -

How can I utilize Yahoo Weather API in android -