Erzincan24 adlı üyeden alıntı: mesajı görüntüle
 $bilgi = json_decode(curl_get_file_contents("https://graph.facebook.com/".$sayfa_id.""));
bu kodu şöyle degiştirdim

 $bilgi = json_decode(curl_get_file_contents("https://graph.beta.facebook.com/".$sayfa_id.""));
graph.facebook.com olarak yaptıgımda veri çekmiyor ancak, https://graph.beta.facebook.com olarak kullandıgımda çekiyor galiba limite ulaştıgı için bloklamış ancak daha önce böyle bi bloklama yaşamadım oyüzden şaşkınım random olarak veri çekebilirmiyim bunun için nasıl bir kod kullanmayalım mesela https://graph.beta.facebook.com?asdad gibi teşşekür ederim.
Buyrun bir örnek hazirladim;

$array_randoms=array
(
"asdsf",
"ddsdsds",
"sddsdssd",
"sddsdsds",
"hghgghhghg"
);
$array_content_randoms=array
(
"https://graph.facebook.com",
"http://graph.facebook.com",
"https://graph.beta.facebook.com",
"http://graph.beta.facebook.com"
);
$sites_rand=$array_content_randoms[array_rand($array_content_randoms)];
$do_rand=$array_randoms[array_rand($array_randoms)];
$bilgi=json_decode(
curl_get_file_contents("http://anonymouse.org/cgi-bin/anon-www.cgi/{$sites_rand}/{$do_rand}"));

echo $bilgi;