我想创建一个自定义函数,然后使用REST API调用它。 目前还不清楚如何在vtwsclib文档上完全做到这一点。
例如,我需要知道如何创建custom_wsmethod()以在以下示例中使用它:
<?php
include_once('vtwsclib/Vtiger/WSClient.php');
$url = 'http://en.vtiger.com/wip';
$client = new Vtiger_WSClient($url);
$login = $client->doLogin('admin', 'KpS9EjNz16JtPmoe');
if(!$login) echo 'Login Failed';
else {
$response = $client->doInvoke(
'custom_wsmethod',
array( 'firstparam' => 'F', 'secondparam' => 'S',
'POST')
);
$wasError = $client->lastError();
if($wasError) {
var_dump($client->lastError());
} else {
// Take action on $response
}
}
?>