Skip to content

Instantly share code, notes, and snippets.

@justinkelly
Created May 2, 2013 23:55
Show Gist options
  • Save justinkelly/5506358 to your computer and use it in GitHub Desktop.
Save justinkelly/5506358 to your computer and use it in GitHub Desktop.
Sample code genreated from Kaltura API test console
<?php
require_once('lib/KalturaClient.php');
$config = new KalturaConfiguration($partnerId);
$config->serviceUrl = 'http://www.kaltura.com/';
$client = new KalturaClient($config);
$filter = new KalturaMediaEntryFilter();
$filter->orderBy = 'startDate';
$filter->categoriesIdsMatchOr = 8317721;
$pager = null;
$result = $client->media->listAction($filter, $pager);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment