Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to do a DELETE http request using PHP and cURL.

I have read how to do it many places, but nothing seams to work for me.

This is how I do it:

public function curl_req($path,$json,$req)
{
    $ch = curl_init($this->__url.$path);
    $data = json_encode($json);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $req);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json','Content-Length: ' . strlen($data)));
    $result = curl_exec($ch);
    $result = json_decode($result);
    return $result;
}

I then go ahead and use my function:

public function deleteUser($extid)
{
    $path = "/rest/user/".$extid."/;token=".$this->__token;
    $result = $this->curl_req($path,"","DELETE");
    return $result;

}

This gives me HTTP internal server ERROR. In my other functions using the same curl_req method with GET and POST, everything goes well.

So what am I doing wrong?

Any help will be very appreciated!

EDIT/UPDATE:

I finally solved this my self. If anyone else is having this problem, here is my solution:

I created a new method:

public function curl_del($path)
{

    $url =$this->__url.$path;
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL,$url);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE");
    $result = curl_exec($ch);
    $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);

    return $result;
}
share|improve this question
3  
The internal server error means there was a problem with the script receiving your request. – Brad Nov 16 '12 at 16:55
Thanks Brad - I know, I guess its because its not send as DELETE request. If I use a REST client plugin for Firefox and send the exact same request with DELETE, it works fine. So it seams like cURL is not sending the request as DELETE. – Bolli Nov 16 '12 at 17:00
Relevant? stackoverflow.com/questions/2081894/… – Marc B Nov 16 '12 at 17:20
Thanks Marc, but it seams like he is doing the same thing as me? Is it impossible to send DELETE requests with PHP? If there is another way withouth cURL, I'm open to use that as well. – Bolli Nov 17 '12 at 12:01

1 Answer

    $json empty

public function deleteUser($extid)
{
    $path = "/rest/user/".$extid."/;token=".$this->__token;
    $result = $this->curl_req($path,"**$json**","DELETE");
    return $result;

}
share|improve this answer
Thanks. In this particular REST call, the JSON part needs to be empty, so this is no problem. But thanks anyway – Bolli Nov 16 '12 at 17:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.