我尝试使用PHP cURL实现this API方法并发送GET请求。
这是我的代码:
$url = 'https://crm.zoho.com/crm/private/xml/'.$module.'/'.$method.'?authtoken='.config('app.ZOHO_KEY').'&scope=crmapi&newFormat=1&id='.$record_id.'&xmlData='.$XML_data;
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_exec($ch);
网址计算如下:
https://crm.zoho.com/crm/private/xml/Contacts/updateRecords?authtoken=XXXX&scope=crmapi&newFormat=1&id=2410575000000139003&xmlData= <Contacts> <row no="1"> <FL val="Email Opt Out">true</FL> </row> </Contacts>
但是,请求失败。我尝试了str_replace(' ', '%20', $url)
,但这并没有解决问题。
答案 0 :(得分:0)
我尝试过str_replace(&#39;&#39;,&#39;%20&#39;,$ url)
你做错了。适合该任务的工具是urlencode()
修改强>
您应该重构代码并通过常规POST请求发送此数据,这正是它的用途。