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 searched a lot, I didn't succeeded in getting the friends birthday

[facebook requestWithGraphPath:@"me" andDelegate:self];

what should I write instead of me to get the friends birthdays. thanks

share|improve this question

3 Answers

Try with below:

[facebook requestWithGraphPath:@"me/friends" 
                         andParams:[ NSDictionary dictionaryWithObjectsAndKeys:@"picture,id,name,link,gender,last_name,first_name",@"fields",nil]
                       andDelegate:self];

Let me know in case of query/difficulty.

Sometimes, Birthday value will be like "null" or only "month & date" or the "full date". So you have to check it manually.

I have one requirement in which I have to display only Month & Date.

You can check it from below function:

+(NSString *)getShortDate:(NSString *)pstrDate{
    NSArray *arrayDateData = [pstrDate componentsSeparatedByString:@"/"];
    NSString *strShortDate = @"";
    if([arrayDateData count]>=2){
        strShortDate = [NSString stringWithFormat:@"%@/%@", [arrayDateData objectAtIndex:0], [arrayDateData objectAtIndex:1]];
    }
    return strShortDate;
} 

Here, "pstrDate" date value is Facebook birthday date value.

I hope it will be helpful to you.

Cheers.

share|improve this answer
up vote 2 down vote accepted

I found an answer & it is as follows:

NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                @"select uid,name,birthday_date from user where uid in (select uid2 from friend where uid1=me())", @"query",
                                nil];
[[StaticFacebook getFacebook] requestWithMethodName: @"fql.query" 
                       andParams: params
                   andHttpMethod: @"POST" 
                     andDelegate: self]; 
share|improve this answer
Congrats ! Your answer helped me dude ! & which was helpful to help my friend & he was helping to some other person :D :P – Spark May 5 '12 at 21:45

Get friends_birthday using graph api:

[facebook requestWithGraphPath:@"me/friends?fields=id,name,gender,picture,birthday" andDelegate:self];

and add permissions like this:

_permissions = [[NSArray arrayWithObjects:
                     @"read_friendlists",@"publish_stream ,user_checkins", 
                     @"friends_checkins", @"publish_checkins",@"email", nil] 
                 retain];
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.