in Android, what is the easiest way to get ones Friend's birthdays? Or relationship status? Using FQL or by requesting it via the Facebook API SDK for Android?
Thanks.
|
|
Now if you print the jobject1 you will get the all your friends birthday list.. The response will be in JSON format you have to get the value from it.. authenticatedFacebook is you object for Facebook.. For further clarification you check in this link.....
Make sure that you gave permission for accessing friends Birthday date.. |
|||||
|
Using FQL we can get birthday and relationship status of a user's friends in one query like this:
which can be implemented on Android using the Facebook Android SDK like so:
where FQLRequestListener extends RequestListener. JSON response will look like this:
You need the
permission |
||||
|
|