This plugin creates functions for Clean Video Gallery Plugin which can be XMLRPC invoked remotely.
| Author: | Peidong Hu (profile at wordpress.org) |
| WordPress version required: | 3.3 |
| WordPress version tested: | 3.3.2 |
| Plugin version: | 0.3 |
| Added to WordPress repository: | 20-05-2013 |
| Last updated: | 20-05-2013
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
|
| Rating, %: | 0 |
| Rated by: | 0 |
| Plugin URI: | |
| Total downloads: | 1 193 |

Click to start download
|
Basically this plugin creates XMLRPC interfaces for Clean Video Gallery Plugin.
NOTE: API functions (xmlrpc revoke functions) are all prefixed with ‘i_gllrxmlrpc’.
FAQ
= Exmaple to invoke the xmlrpc api in PHP= //this example demo how to query the clean video gallery posts set_time_limit(0); require_once(“IXR_Library.php.inc”);
$client->debug = true; // Set it to false in Production Environment
// Create the client object $client = new IXR_Client(‘{hostname}’,’/xmlrpc.php?XDEBUG_SESSION_START=ECLIPSE_DBGP&KEY=13522981788714′);
$username = “{admin login name}”;
$password = “{password}”;
$function_args = array(array(”,$username,$password, array(‘post_type’=>’galleryvideo’))); $params = array($username,$password,”i_mpqvideogllrxmlrpc_metaweblog_getposts”, $function_args);
// Run a query To Read Posts From WordPress $ret = $client->query(‘mpqvideogllrxmlrpc_extapi.callMpqVideoGllrMethod’, $params); if (!$ret) { die(‘Something went wrong – ‘.$client->getErrorCode().’ : ‘.$client->getErrorMessage()); }
$myresponse = $client->getResponse(); print_r($myresponse); die();
ChangeLog