webservice.php Vtiger 更新查询字符串 php curl post
webservice.php Vtiger update Query String php curl post
有谁知道如何在 vtiger 中正确格式化更新查询以更新 Leads 模块下的记录?
我一直在关注这个:http://community.vtiger.com/help/vtigercrm/developers/third-party-app-integration.html
并且已经能够登录、查询和进行质询响应,但我无法使更新功能正常工作,这可能是因为我不确定他们希望查询的外观如何。这是我发送查询时收到的错误:
stdClass Object ( [success] => [error] => stdClass Object ( [code] => ACCESS_DENIED [message] => Permission to perform the operation is denied for id ) )
当前测试代码:
function updatesomeone(){
global $createduserleadnum;
global $url;
global $sessionID;
global $createduserid;
$customdata = array(
'firstname'=> 'TestAPILead2',//Update First name
'lastname'=> 'TestAPILeadLast2', //Updated Last name
'leadstatus'=> 'New',
'leadsource'=> 'Some Lead Source', //Not Real Lead source
'assigned_user_id'=> 'User-Assigned', //not real user
'cf_755'=> 'A Custom Field', // A Custom Field
'lead_no' => $createduserleadnum, Acquired from other function/stored value
);
$customdata = json_encode($customdata);
$field = array(
'operation' => 'update',
'sessionName'=> $sessionID,
'element' => $customdata
);
$fields_string;
foreach($field as $key=>$value) { global $fields_string;
$fields_string .= $key.'='.$value.'&'; }
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL, $url);
curl_setopt($ch,CURLOPT_POST, count($field));
curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$result = curl_exec($ch);
$pringjson = json_decode($result);
print_r($pringjson);
}
想通了。它与 $fieldstring 变量有关。由于某种原因,它并没有停留在函数的本地,因此它包含了一些其他变量。只是用末尾的数字更改了 fieldstring 变量。在最终代码中,我将为 url-ify'ing 变量编写一个更好的脚本。我还必须使用给定的完整 ID。无论哪种方式,它现在都已解决并且代码可以正常工作。
我对您的代码有一个建议。您还没有删除 & 最后将在 "foreach" 循环后生成。所以只需在 foreach 之后添加 rtrim 并将 $fields_string 变量定义为空白。
$fields_string = '';
foreach($field as $key=>$value) {
global $fields_string;
$fields_string .= $key.'='.$value.'&';
}
rtrim($fields_string, '&');
有谁知道如何在 vtiger 中正确格式化更新查询以更新 Leads 模块下的记录?
我一直在关注这个:http://community.vtiger.com/help/vtigercrm/developers/third-party-app-integration.html
并且已经能够登录、查询和进行质询响应,但我无法使更新功能正常工作,这可能是因为我不确定他们希望查询的外观如何。这是我发送查询时收到的错误:
stdClass Object ( [success] => [error] => stdClass Object ( [code] => ACCESS_DENIED [message] => Permission to perform the operation is denied for id ) )
当前测试代码:
function updatesomeone(){
global $createduserleadnum;
global $url;
global $sessionID;
global $createduserid;
$customdata = array(
'firstname'=> 'TestAPILead2',//Update First name
'lastname'=> 'TestAPILeadLast2', //Updated Last name
'leadstatus'=> 'New',
'leadsource'=> 'Some Lead Source', //Not Real Lead source
'assigned_user_id'=> 'User-Assigned', //not real user
'cf_755'=> 'A Custom Field', // A Custom Field
'lead_no' => $createduserleadnum, Acquired from other function/stored value
);
$customdata = json_encode($customdata);
$field = array(
'operation' => 'update',
'sessionName'=> $sessionID,
'element' => $customdata
);
$fields_string;
foreach($field as $key=>$value) { global $fields_string;
$fields_string .= $key.'='.$value.'&'; }
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL, $url);
curl_setopt($ch,CURLOPT_POST, count($field));
curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$result = curl_exec($ch);
$pringjson = json_decode($result);
print_r($pringjson);
}
想通了。它与 $fieldstring 变量有关。由于某种原因,它并没有停留在函数的本地,因此它包含了一些其他变量。只是用末尾的数字更改了 fieldstring 变量。在最终代码中,我将为 url-ify'ing 变量编写一个更好的脚本。我还必须使用给定的完整 ID。无论哪种方式,它现在都已解决并且代码可以正常工作。
我对您的代码有一个建议。您还没有删除 & 最后将在 "foreach" 循环后生成。所以只需在 foreach 之后添加 rtrim 并将 $fields_string 变量定义为空白。
$fields_string = '';
foreach($field as $key=>$value) {
global $fields_string;
$fields_string .= $key.'='.$value.'&';
}
rtrim($fields_string, '&');