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 am trying to retrieve user email via facebook after user authentication on my website.

I ran the query below, but the email and birthday fields are empty ; and they are very vital for registration on my website.

#*** run fql ***
   $fql    =   "select uid, first_name, last_name, name, sex, email, current_location, website, interests, birthday, pic_big from user where uid=me()";
   $param  =   array('method' => 'fql.query', 'query' => $fql, 'callback' => '');
   $user   =   $facebook->api($param);print_r($user);

What do i do please

share|improve this question

1 Answer

up vote 2 down vote accepted

To access fields like email and birthday you need to request extra permissions during authorization. Full list of permissions is available here.

share|improve this answer
pls i have gone thru it , i cant seem to understand ow to use the extended permission, pls can you help with a sample, will be glad thanks – Ogugua Belonwu Oct 10 '10 at 22:55
you can just ask for permissions when logging in: $facebook->login('permission1, permission2...') – Claudiu Oct 10 '10 at 23:02
@Ogugua: Here is what seems like a decent tutorial: net.tutsplus.com/tutorials/php/… – serg Oct 10 '10 at 23:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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