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 get friend birthday list.

But how to find using my api I dont know.

share|improve this question
10  
It might help for you to go through and accept answers on some of your 23 questions...people here will be more likely to help if they know they might be able to get some rep for their effort... – Paul Woolcock Aug 3 '10 at 4:41
1  
What does this have to do with android? – Matt Ball Aug 3 '10 at 4:42
4  
which language? what platform? sample code? error messages? no accepted answers.. this is like a master class in how not to use SO :) might want to think through how you approach this site.. – danp Aug 3 '10 at 8:51

6 Answers

up vote 6 down vote accepted
+25

Use the OpenGraph API in whatever environment you use to retrieve the information. The birthday is in the user information object, see docs: http://developers.facebook.com/docs/reference/api/user

share|improve this answer
2  
I would be helpful if you kindly give a demo code to access birthday list with this api. If possible!!!!!!!!!!! – RockOn Aug 13 '10 at 6:18
you can get birthdays using graph api graph.facebook.com/me/… token here> be sure you have permission to your friends list and birthday or it will return null. – Underdog Aug 1 '12 at 8:18

Firstly, read the readme on the project page to get started with the SDK.

You'll then need to look at the API reference and more specifically the user profile section.

After you've done all that you'll end up with a JSON object you can parse using the org.json package in the Android SDK.

Hopefully that helps you out.

share|improve this answer

You can also use facebook api :

$friends_birthday = $facebook->api("/me/friends?fields=id,name,birthday");

you must also have permission friends_birthday in the scope of your app

share|improve this answer

You have to use FQL to get a list of friend's birthday.

FQL would be (just replace your access token):

"https://api.facebook.com/method/fql.query?query=select name, birthday_date from user where uid in (select uid2 from friend where uid1=me())&access_token=your_access_token"

share|improve this answer

This is the link for Graph API Explorer

https://developers.facebook.com/tools/explorer/?method=GET&path=me go the link and click on Get Access Tocken you can have a pop-up for select permissions and select your access token. and at the node section select the fields you want ( example select friends and as a sublink in friends select birthday) and GET a query by clicking on SUBMIT then you can have a friend's birthday and id along with yours as a Json Data.

share|improve this answer

get the full friend list with Graph api , iterate json data array and then check for birthday=today .. that is

share|improve this answer

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.