-3
我正在開發社交媒體的網絡應用程序我想獲得應用程序的用戶朋友列表和他們的詳細信息我試圖檢索用戶朋友數據使用PHP SDK 4.0,但它給了我一個空數組,然後我嘗試使用json格式獲取數據。這是我的代碼我現在想如何檢索Facebook應用程序的用戶朋友列表與他們的詳細信息使用PHP
<?php
$fb_config = array(
'appId' => 'xxxxxxxxxxxx',
'secret' => 'xxxxxxxxxxxxxxxxx',
'cookie' => TRUE
);
$this->load->library('facebook', $fb_config);
$user = $this->facebook->getUser();
if ($user) {
try {
$data['user_profile'] = $this->facebook->api('/me');
} catch (FacebookApiException $e) {
$user = null;
}
}
if ($user) { //ok, the user exist, proceed
$access_token = $this->facebook->getAccessToken();
$file = file_get_contents('https://graph.facebook.com/me/friends?access_token=' . $access_token);
$jsonFriends = json_decode($file, true);
$Friends = $jsonFriends['data'];
}
?>
我越來越
Fatal error: Using $this when not in object context in M:\xampp\htdocs\fb\demo.php on line 7
這個錯誤,當我運行這段代碼。
這個錯誤是自我解釋 – 2014-09-29 04:22:22
多少錢你知道PHP?你自己寫了這些代碼嗎? – 2014-09-29 04:27:21
我是新來的PHP開發https://www.socketloop.com/tutorials/get-facebook-friends-list-data-with-php-return-json-format – user3021253 2014-09-29 04:54:58