Stepan Yakovenko
Stepan Yakovenko

Reputation: 9206

How to get user birthday and online status with facebook SDK for android

I am writing android application with SDK and I need to get other users's (not /me) birthday/age and online status? Is this possible? Tried following:

Any ideas how else I can get user's ages/online statuses?

Thanx.

Upvotes: 2

Views: 698

Answers (1)

andyrandy
andyrandy

Reputation: 73984

No, friend permissions have been removed with v2.0 of the Graph API. You can only get access to data of users who authorized your App (with the correct permissions). Meaning, birthday, age and online status is not available. You can´t even get the online status of an authorized user anymore, because that permission has been removed too.

More information: https://developers.facebook.com/docs/apps/changelog#v2_0

Upvotes: 2

Related Questions