Merhaba ben facebook uygulaması oluşturmak için çalışıyorum ama ben facebook api çağrı düzgün çalışmıyor gibi hata alıyorum. Ben aşağıdaki kodu kullanıyorum:
try {
$uid = $facebook->getUser();
$fbme = $facebook->api('/me');
} catch (FacebookApiException $e) {
echo "uid: $uid<br>";
var_dump($fbme);
echo $e;
}
In this I get uid but $fbme is NULL. The error returned is CurlException: 6: name lookup timed out. Why this is happening?? Pls help me.