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.
Bundle params = new Bundle();
params.putString("fields","birthday");
JSONObject jObject1 = new JSONObject(authenticatedFacebook.request("me/friends",params));
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.....
private static final String[] PERMISSIONS =
new String[] {"friends_birthday","read_stream", "offline_access"};
Make sure that you gave permission for accessing friends Birthday date..
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With