Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have created a simple Facebook application in PHP, that greets user by there user name, I also want there Email id, to be displayed. But i am not able to do that. the code that i am using is,

require_once('facebook.php');
require_once('config.php');
$facebook = new Facebook(APIKEY, SECRETKEY);
$user=$facebook->require_login();

echo $user; // displaying the ID
<div style="padding: 10px;" id="greeting">
   <fb:if-is-app-user uid="loggedinuser">
      <h2>Hi <fb:name firstnameonly="true" uid="loggedinuser" useyou="false"/>! welcome to facebook</h2>
  <fb:else>
       <h2>Hi <fb:name firstnameonly="true" uid="loggedinuser" useyou="false"/>! welcome to facebook</h2>
   </fb:else>
   </fb:if-user-has-added-app>
</div>

the Output that i am getting is,

1000002020202020
Hi User! welcome to facebook

I want the Email address to be displayed along with the user name, i searched many code but did not get any solution. and if you any good facebook tutorial site please post the links too..

share|improve this question
I think Facebook API does not allow to retrieve user's real email ids, you can get only their proxy email ids – Mithun Jul 29 '10 at 13:35
@Mithun P Facebook API allows you to receive real email id, but it depends upon the user, who will give permission to your application to do that. we can also access Albums Info, Date of birth and all profile information which is in the users profile... – Harish Kurup Aug 7 '10 at 5:23

4 Answers

up vote 7 down vote accepted

You can get the Email Address, directly without using the FQL.

// initialize facebook
 $facebook = new Facebook(array(
        'appId' => APP_ID,
        'secret' => APP_SECRET));

 $session = $facebook->getSession();
 if ($session) {
 try {
    $fbme = $facebook->api('/me');
  } catch (FacebookApiException $e) {
    error_log($e);
  }
}
else
{
  echo "You are NOT Logged in";
}

//getting the login page if not signned in
if (!$fbme) {
  $loginUrl = $facebook->getLoginUrl(array('canvas' => 1,
                                      'fbconnect' => 0,
                                      'req_perms' =>                   'email,user_birthday,publish_stream',
                                      'next' => CANVAS_PAGE,
                                      'cancel_url' => CANVAS_PAGE ));
 echo '<fb:redirect url="' . $loginUrl . '" />';
 } else {

      // $fbme is valid i.e. user can access our app
     echo "You can use this App";
 }

 // getting the profile data
 $user_id = $fbme[id];
 $name=$fbme['name'];
 $first_name=$fbme['first_name'];
 $last_name=$fbme['last_name'];
 $facebook_url=$fbme['link'];
 $location=$fbme['location']['name'];
 $bio_info=$fbme['bio'];
 $work_array=$fbme['work'];
 $education_array=$fbme["education"];
 $email=$fbme['email'];
 $date_of_birth=$fbme['birthday'];

This code worked for me..and i go all the information needed with the Email ID.

NOTE: User has to allow us to get their Information during the Approval of Application.
share|improve this answer

You need to ask for extended permissions when the user authorizes your application, so you can have access to the user email.

Here's an example using the new PHP SDK and the Graph API:

<?php

require_once($_SERVER['DOCUMENT_ROOT'] . '/includes/config.php');

// initialize facebook
$facebook = new Facebook(array(
            'appId' => APP_ID,
            'secret' => APP_SECRET));

$user = $facebook->getUser();
$session = $facebook->getSession();

// in case we don't have a valid session, we redirect asking for email extended permissions
if ($user == null || $session == null) {
  $params = array();
  $params["canvas"] = "1";
  $params["fbconnect"] = "0";
  $params["next"] = CANVAS_URL;
  $params["req_perms"] = "email";

  $loginUrl = $facebook->getLoginUrl($params);

  echo '<fb:redirect url="' . $loginUrl . '"/>';
  exit();
}

// get user email via the new graph api, using the fql.query method
$url = "https://api.facebook.com/method/fql.query";
$url .= "?access_token=" . $session['access_token'];
$url .= "&query=SELECT email FROM user WHERE uid={$user}";
$userData = simplexml_load_file($url);
$userEmail = $userData->user->email;

echo 'The user ID is: ' . $user;
echo 'The user name is: <fb:name uid="' . $user . '" />';
echo 'The user email is: ' . $userEmail;
share|improve this answer
the result i got by running the $url (in browser).. <fql_query_response list="true"> − <user> <email>mymail@gmail.com</email> </user> </fql_query_response> but $userData was getting null.. i dont know why this is happening? – Harish Kurup Aug 6 '10 at 6:24
maybe there's some issue with simplexml in your server, you could use $json = file_get_contents($url); instead, adding "&format=JSON" as a parameter in $url, and then $userData = json_decode($json, true); – agbb Aug 6 '10 at 15:25
or maybe cURL... – agbb Aug 6 '10 at 15:27
ok, i will try that...but any way i am getting the Email id. Thank you @agbb – Harish Kurup Aug 7 '10 at 5:20
thank you. I've also spent hours to figure it out and I'm going to post my answer below. Thanks a lot. :) – murvinlai Nov 2 '10 at 1:02

Thanks for all the help. I finally figure out how to do that.

first, I need to get the access token, NOT the user session one, but the one for admin.

So, here is the code:

$url = 'https://graph.facebook.com/oauth/access_token';
$ch = curl_init();
$params = array(
                'grant_type'=>'client_credentials',
                'client_id'=>$appId,
                'client_secret'=>$secret,
                );

$opts[CURLOPT_POSTFIELDS] = http_build_query($params, null, '&');
// set URL and other appropriate options
curl_setopt_array($ch, $opts);
curl_setopt($ch, CURLOPT_URL, "$url");
curl_setopt($ch, CURLOPT_HEADER, 0);

// grab URL and pass it to the browser
$adminAccessToken = curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);

And then, I can use the facebook API to get any user who accept the application and the extended permission like that:

$fql    =   "select name, hometown_location, sex, pic_square, email from user where uid=1000000001";
    $param  =   array(
       'method'     => 'fql.query',
        'query'     => $fql,
        'access_token' =>$adminAccessToken ,
      'callback'    => ''
    );

    $fqlResult2   =   $facebook->api($param);

with the access token, i can also post things onto user's wall. :)

share|improve this answer

I search a lot of, how to get users email id in Facebook application. And Your solution is right for me. But when I try it again I get an error.

access_token=101028559963692|ITWTsL95ooZWHa3W0k5Hbd_IA4s Fatal error: Uncaught Exception: 190: Invalid OAuth 2.0 Access Token thrown in /home/goracioc/facebook/access-data/facebook.php on line 425

It's my code.

<?php
//facebook application
//set facebook application id, secret key and api key here

$appId = $fbconfig['appid' ] = "AppID";
$fbconfig['api'   ] = "AppKey";
$secret = $fbconfig['secret'] = "AppSecret";

//set application urls here
$fbconfig['baseUrl']    =   "http://somebaseurl/"; 
$fbconfig['appBaseUrl'] =   "http://somecanvasurl/";

$uid            =   null; //facebook user id

try{
    include_once "facebook.php";
}
catch(Exception $o){
    echo '<pre>';
    print_r($o);
    echo '</pre>';
}
// Create our Application instance.
$facebook = new Facebook(array(
  'appId'  => $fbconfig['appid'],
  'secret' => $fbconfig['secret'],
  'cookie' => true,
));

//Facebook Authentication part
$session = $facebook->getSession();
echo d($session);
$loginUrl = $facebook->getLoginUrl(
        array(
        'canvas'    => 1,
        'fbconnect' => 0,
        'req_perms' => 'email,publish_stream,status_update,user_birthday,user_location,user_work_history'
        )
);

$fbme = null;

if (!$session) {
    echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
    exit;
}
else {
    try {
        $uid      =   $facebook->getUser();
        $fbme     =   $facebook->api('/me');

    } catch (FacebookApiException $e) {
        echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
        exit;
    }
}

function d($d){
    echo '<pre>';
    print_r($d);
    echo '</pre>';
}

$url = 'https://graph.facebook.com/oauth/access_token';
$ch = curl_init();
$params = array(
                'grant_type'=>'client_credentials',
                'client_id'=>$appId,
                'client_secret'=>$secret,
                );

$opts[CURLOPT_POSTFIELDS] = http_build_query($params, null, '&');
// set URL and other appropriate options
curl_setopt_array($ch, $opts);
curl_setopt($ch, CURLOPT_URL, "$url");
curl_setopt($ch, CURLOPT_HEADER, 0);

// grab URL and pass it to the browser
$adminAccessToken = curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);

$fql    =   "select name, hometown_location, sex, pic_square, email from user where uid=1000000001";
$param  =   array(
   'method'     => 'fql.query',
    'query'     => $fql,
    'access_token' =>$adminAccessToken ,
  'callback'    => ''
);

$fqlResult2   =   $facebook->api($param);
d($fqlResult2);

?>

Сan You explain to me what I am doing wrong?

share|improve this answer

protected by Community Apr 22 '12 at 13:41

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.