我想在PHP腳本(id和名稱)中獲取有關用戶的一些基本信息。圖形API:如何抓取當前用戶的信息?
我曾嘗試以下方法:
$retrieve = curl_init("https://graph.facebook.com/me?access_token=$accesstoken");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($retrieve, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$data = curl_exec($retrieve);
curl_close($retrieve);
和
$user = json_decode(file_get_contents(
"https://graph.facebook.com/me?access_token=$accesstoken"))->me;
捲曲方法(前)只是超時。 file_get_contents(後者)方法根本不返回任何東西...
什麼可能導致這種情況?我正確使用cURL嗎?
你檢查一下file_get_contents()函數返回的信息沒有json_decode()調用和 - > me操作符? – 2010-10-23 23:10:40
爲什麼不使用Facebook PHP SDK來做到這一點? http://github.com/facebook/php-sdk – 2010-10-23 23:10:49
@Eran:是的,它根本沒有任何回報。這完全是空的。 @Nathan:我現在沒有使用SDK,我需要先手動執行此操作。我不明白爲什麼這不起作用... – 2010-10-23 23:18:11