Rico Ocepek
Rico Ocepek

Reputation: 803

Graph Api query friends address

Is it possible to query the current address of my friends using Graph Api 2.2 (no Fql)?

I have already tried this

/me?fields=friends{address}

but it just returned the ids of my friends but not their address.

Upvotes: 0

Views: 52

Answers (1)

Tobi
Tobi

Reputation: 31479

Two problems:

  1. There is no such field as address

    See https://developers.facebook.com/docs/graph-api/reference/v2.2/user#fields

  2. You can't query for friends info anymore, because all friends_*permissions have been deprecated with Graph API v2.0

    See https://developers.facebook.com/docs/apps/changelog#v2_0_permissions

Upvotes: 1

Related Questions