Monday, October 31, 2011

Facebook application developer Facebook Api PhP - friendlist.php

Let your api users to display their friends list ..


friendlist.php Code

<?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>
view raw gistfile1.phtml hosted with ❤ by GitHub

feed.php Previous | Next friendspics.php