好了,我看你用蠟籠爭論不少,但還沒有你,我和我的評論友好的,所以這裏去。
#1需要的功能/ API您嘗試使用,使用shortways和StackOverflow上編寫代碼的一些基本的瞭解不會好起來:-)
的捲曲和Web和PHP庫,它的SETOPT ():
$curl = curl_init($url . "/Contacts/{$recordId}");
$curl = curl_init($url . "/Contacts/{$recordId}");
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, "DELETE");
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: application/json',"OAuth-Token: $token"));
// Make the REST call, returning the result
$response = curl_exec($curl);
if (!$response) {
die("Connection Failure.n");
}
(來自https://developer.sugarcrm.com/2013/08/30/doing-put-and-delete-with-curl-in-php/兩者)
請查找OAuth令牌文件,而是從運去那裏,我強烈地想你的哈希值。
如手動說:http://php.net/manual/de/curl.examples.php – Najzero
@Najzero我不知道如何發送「刪除」請求 – Tony33
使用此作爲指導http://stackoverflow.com/questions/13420952/php-curl-delete-request –