VTiger:WebService - 如何创建REST接口公开的自定义Web服务方法

时间:2016-11-02 12:54:43

标签: php web-services vtiger

我想创建一个自定义函数,然后使用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
 }
}
?>

0 个答案:

没有答案