php: cURL ile url içerik (json) alın

0 Cevap php

I want to access https://graph.facebook.com/19165649929?fields=name (obviously it's also accessable with "http") with cURL to get the file's content, more specific: I need the "name" (it's json). Since allow_url_fopen is disabled on my webserver, I can't use get_file_contents! So I tried it this way:

<?php
$page = 'http://graph.facebook.com/19165649929?fields=name';
$ch = curl_init();
//$useragent="Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1";
//curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
curl_setopt($ch, CURLOPT_URL, $page);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
?>

Bu kod ile boş bir sayfa olsun! Ben böyle başka bir sayfa, http://www.google.com kullandığınızda (Ben sayfanın içeriğini olsun) bir cazibe gibi çalışır. Ben facebook ne olabilir ... Bilmiyorum şey kontrol ediyor sanırım? Nasıl kod iş yapabilir? Teşekkürler!

0 Cevap