糖皂set_entry
我正在尝试使用以下 PHP 中的 SOAP 代码将条目添加到 Sugar Contacts 数据库中。
$set_entry_params = array(
'session' => $result_array->id,
'module_name' => 'Contacts',
'name_value_list'=>array(
array('name'=>'Name','value'=>'Brian')
)
);
$result = $soapClient->__soapCall('set_entry', $set_entry_params);
在 Sugar 数据库中创建了一个条目,但名称字段留空,并且 Role 字段标记为:Pre Sugar Roll Out
有谁知道这里出了什么问题吗?
I am trying to add entries to a Sugar Contacts database with the following SOAP code in PHP.
$set_entry_params = array(
'session' => $result_array->id,
'module_name' => 'Contacts',
'name_value_list'=>array(
array('name'=>'Name','value'=>'Brian')
)
);
$result = $soapClient->__soapCall('set_entry', $set_entry_params);
An entry is made in the sugar db, but the name field is left blank and the Role field is labelled: Pre Sugar Roll Out
does anyone know what is wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该问题可能是由于在“name_value_list”中使用“Name”作为“名称”造成的。 “Name”字段只是“first_name”和“last_name”字段的串联。尝试:
The issue is probably due to using "Name" as your "name" in teh "name_value_list". The "Name" field is just a concactonation of the "first_name" and "last_name" fields. Try: