Лучший пример, который я нашел:
$request_body = 'some data'; $ch = curl_init('http://www.example.com'); curl_setopt($ch, CURLOPT_POSTFIELDS, $request_body); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE"); $response = curl_exec($ch); var_dump($response);
Хотя это нужно, чтобы deltete запрос приложения FB, чтобы URL-адрес выглядел следующим образом: https://graph.facebook.com/[request_id]?access_token=USER_ACCESS_TOKEN
Может ли кто-нибудь показать мне, как реализовать этот код для моего дела?
Не используйте curl_setopt($ch, CURLOPT_POSTFIELDS, $request_body);
использование
$ch = curl_init('https://graph.facebook.com/'.$request_uri.'&access_token='.$access_token); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE"); $response = curl_exec($ch); var_dump($response);