videoGetList
public static array videoGetList(string token,int pagenumber,int pagesize)
Get the list of Videos using paging limits.
- <?php
- /**
- This Example shows how to authenticate a user using XML-RPC.
- Note that we are using the PEAR XML-RPC client and recommend others do as well.
- **/
- require_once 'XML/RPC2/Client.php';
- require_once 'inc/config.php';
- $client = XML_RPC2_Client::create($apiURL);
- $token = $client->login($apiLogin, $apiPassword);
- $videoStruct = $client->GetVideoGalleryList($token, 1,10);
-
- foreach($videoStruct as $rec) {
- echo $rec['sequence'] . "] Video Name: " . $rec['video_name'] . "(" . $rec['id'] . ")";
- echo "\t Description of the Video:" . $rec['video_description'] . "(" . $rec['video_embed'] . ")";
- echo "\t Width of the Video:" . $rec['video_width'] ;
- echo "\t Hight of the Video:" . $rec['video_height'] ;
- echo "\t Created Date: " . $rec['createddatetime'] ;
- echo "<br />";
- }
-
- ?>