Facebook'un Graph API yoluyla durumunu Gönderme

1 Cevap php

PHP, ben intructions facebook vermek aşağıdaki rağmen, grafik API kullanarak Facebook fan sayfası için bir statü göndermek için çalışıyorum, aşağıdaki kod durumunu güncelleştirmek için görünmüyor.

İşte kod;

$xPost['access_token'] = "{key}";
$xPost['message'] = "Posting a message test.";

$ch = curl_init('https://graph.facebook.com/{page_id}/feed'); 
curl_setopt($ch, CURLOPT_VERBOSE, 1); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_HEADER, 1); 
curl_setopt($ch, CURLOPT_TIMEOUT, 120);
curl_setopt($ch, CURLOPT_POST, 1); 
curl_setopt($ch, CURLOPT_POSTFIELDS, $xPost); 
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 1);  
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1); 
curl_setopt($ch, CURLOPT_CAINFO, NULL); 
curl_setopt($ch, CURLOPT_CAPATH, NULL); 
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0); 

$result = curl_exec($ch); 

Bu kod neden çalışmadığını biliyor mu? Access_token doğru.

1 Cevap

o "CURLOPT_SSL_VERIFYPEER" 0'a ayarlanmalıdır görünüyor;

e.g. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);