totally noob with API and php5 client.

No replies
Joined: 02/23/2010
Points: 7

Hi there! I'm totally new to Kaltura but need to build video functionality for one small social network.
I already understood how to create session

$config           = new KalturaConfiguration(KALTURA_PARTNER_ID);
$client           = new KalturaClient($config);
$ks               = $client->session->start(KALTURA_PARTNER_WEB_SERVICE_SECRET, $partnerUserID, KalturaSessionType::ADMIN);
$client->setKs($ks);  // set the session in the client

and add users

$user = new KalturaUserService($client);
$u = new KalturaUser();
$u->id = 31338;
$u->screenName = 'testuser';

However, i need to do more complicated stuff, for example, how do i upload video using API for specific user and getting list of items of specific user. While i understand that true power lies ahead i can't reach it cause i've been unable to find documentation for php5 client (api_v3). We use kaltura fully hosted solution and have really compressed timeframe for whole video feature on our site. So guys i really appreciate some help with php5 client basics so i can code this faster than the light speed :)