Let your api users to display their friends list ..
friendlist.php Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require 'config.php'; | |
$canvas_auth = 'http://evry1falls.freevar.com/test12/'; | |
$auth_url = $facebook->getLoginUrl(array( | |
'scope' => 'email,publish_stream', | |
'redirect_uri' => $canvas_auth, | |
// you could just redirect back to this index page though | |
)); | |
// Get User ID | |
$user = $facebook->getUser(); | |
if (empty($user)) { | |
// echo("<script> top.location.href='" . $auth_url . "' | |
$logoutUrl = $facebook->getLogoutUrl(); | |
} | |
else { | |
// We may or may not have this data based on whether the user is logged in. | |
// | |
// If we have a $user id here, it means we know the user is logged into | |
// Facebook, but we don't know if the access token is valid. An access | |
// token is invalid if the user logged out of Facebook. | |
if ($user) { | |
try { | |
// Proceed knowing you have a logged in user who's authenticated. | |
$user_profile = $facebook->api('/me'); | |
} catch (FacebookApiException $e) { | |
error_log($e); | |
$user = null; | |
echo '<a href=http://www.evry1falls.freevar.com/test12/friendlist.php>' . 'Refresh' . '</a>'; | |
} | |
} | |
} | |
$friends = $facebook->api('/me/friends'); | |
$simple_array=$friends['data']; | |
foreach($simple_array as $key=> $value){ | |
$freinds_id[]=$value['id']; | |
} | |
for($i=0;$i<count($freinds_id);$i++){ | |
echo "<b>" . $freinds_id[$i]. "</b>" . "<BR>"; | |
} | |
echo "<br />" . "You Have " . $i . " Friends"; | |
$redirectUrlk = "https://www.facebook.com/dialog/oauth?client_id=118487369116&redirect_uri=http://evry1falls.freevar.com/test12/ | |
index.php&state=5da7ce9f0201f209c7d699cb881c3b02&scope=read_stream, | |
friends_likes"; ?> | |
</p> | |
<p><a href = "<? $redirectUrlk ; ?> . ">Back</a> |