我正在尝试将变量添加到 URL,以便将 XML 字符串内容发布到 Zoho CRM。我想我可以用 cURL 做到这一点。但什么也没有发生。我从 Zoho CRM API 获得了 xml 值。
<?php
$xml_data = '<SalesOrders>'.
'<row no="1">'.
'<FL val="Subject">Zillium - SO</FL>'.
'<FL val="Due Date">2009-03-10</FL>'.
'<FL val="Sub Total">48000.0</FL>'.
'<FL val="Tax">0.0</FL>'.
'<FL val="Adjustment">0.0</FL>'.
'<FL val="Grand Total">48000.0</FL>'.
'<FL val="Billing Address Street">test</FL>'.
'<FL val="Shipping Street">test</FL>'.
'<FL val="Billing City">test</FL>'.
'<FL val="Shipping City">test</FL>'.
'<FL val="Billing State">test</FL>'.
'<FL val="Shipping State">test</FL>'.
'<FL val="Billing Code">223</FL>'.
'<FL val="Shipping Code">223</FL>'.
'<FL val="Billing Country">test</FL>'.
'<FL val="Shipping Country">test</FL>'.
'<FL val="Product Details"></FL>'.
'<FL val="Terms and Conditions">Test by Zoho</FL>'.
'<FL val="Description">Test By Zoho</FL>'.
'</row>'.
'</SalesOrders>';
$ch = curl_init("https://crm.zoho.com/crm/private/xml/SalesOrders/insertRecords?
authtoken=xxxxxxxxxxxxx&scope=crmapi
&newFormat=1&xmlData=");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_data);
curl_exec($ch);
curl_close($ch);
?>
我在网上到处搜索以找到解决方案,但没有任何效果。这
谢谢。