我正在尝试通过 Laravel 5 中的 Web 服务在 Vtiger 中提交/创建新的潜在客户 [数据]。为此,我在 Laravel 中使用WSClient。
我的代码在控制器中是:
$url = http://xxxx.com;
$config = [
'auth' => [
'username' => 'xxxx',
'accesskey' => 'xxxx'
],
'testing' => []
];
$wsclient = new WSClient($url, $config);
$create = $wsclient->createObject('Leads', array(
'firstname' => 'My Firstname',
'lastname'=>'My Lastname',
'phone'=>'MyPhone',
'email'=>'email@email.com',
'description'=> 'abcdabcd123',
'assigned_user_id'=>1,
));
当我刚刚创建时它工作正常Leads
。但是现在我需要在文档中提交文件Leads
所以我使用跟随代码但不起作用
$create = $wsclient->createObject('Documents', array(
'notes_title' => 'Leads Pdf File',
'file'=>'http://website/pdffile.pdf',
'assigned_user_id'=>1,
));
它有效,但文件不上传
如何Leads
通过 Web 服务在 Vtiger 的文档中Laravel
提交文件WSClinet
?