i am getting null in friends list this is my code
-(void)getFriendList
{
FBRequest *friendsRequest=[FBRequest requestForMyFriends];
[friendsRequest startWithCompletionHandler:^(FBRequestConnection *connection,NSDictionary* result,NSError *error)
{
arrFriendFB = [result objectForKey:@"data"];
arrFriendFB=[arrFriendFB valueForKey:@"first_name"];
NSLog(@"friemd=%@",arrFriendFB);
NSLog(@"friends description :%@",[arrFriendFB description]);
}];
}