Я использую Facebook Graph API для получения таких данных пользователя, как имя, адрес электронной почты и т. Д.
ниже мой код.
$nvpreq = "access_token=160370244010460|b8eba6c19f01b271ef0c682e-100000018108668|q50nk4_LpXvCdnpgiI-jyBPrzCM";
$Curl_Session = curl_init('https://graph.facebook.com/100001573561119');
curl_setopt ($Curl_Session, CURLOPT_POST, 1);
curl_setopt ($Curl_Session, CURLOPT_POSTFIELDS, $nvpreq);
curl_setopt ($Curl_Session, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$httpResponse = curl_exec ($Curl_Session);
curl_close ($Curl_Session);
Но я получаю ошибку ниже
"type":"GraphMethodException","message":"Unsupported post request."}}1
Может кто-нибудь, пожалуйста, помогите мне.
Спасибо,
Атул