Facebook : Getting the friends list with PHP return JSON format
Problem :
How to get friends list in Facebook with PHP in Json format?
Solution :
Use Facebook SDK https://graph.facebook.com/me/friends
Below is a code fragment in CodeIgniter/PHP on achieving the desired result.
<?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'];
}
?>
The important part is to save the returned result from Facebook into a file and the decode the result with Json decode function in PHP.
Hope this solution will assist your project.
See also : Get Facebook friends working in same company
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+8.1k Golang : Qt splash screen with delay example
+17.5k Golang : [json: cannot unmarshal object into Go value of type]
+6.3k CodeIgniter : form input set_value cause " to become & quot
+17.6k Golang : Read data from config file and assign to variables
+10.2k Golang : Simple Jawi(Yawi) to Rumi(Latin/Romanize) converter
+11.9k Golang : Find and draw contours with OpenCV example
+5.8k Golang : Extract unicode string from another unicode string example
+6.1k Javascript : Generate random key with specific length
+5.8k Golang : Denco multiplexer example
+15.4k Golang : Validate hostname
+13.3k Android Studio : Password input and reveal password example
+31.3k Golang : Example for ECDSA(Elliptic Curve Digital Signature Algorithm) package functions