views:

31

answers:

0

I am working on a Yahoo! App which involves the usage of Profile Information of the logged in user. The Application is being developed using yos-social-php and is hosted on one of our Servers.

As per the requirement, I need the Birthday of the user for a special task. To achieve this, I loaded the user profile and echoed it in the browser, but, the profile doesn't have Birthday in it.

Following is a snippet:

$yahoo_user   = $yahoo_session->getSessionedUser();
$user_profile = $yahoo_user->loadProfile();

Can someone please tell me how I can load the complete user profile or at least get the Birthday of the user.

Thanks in advance.