L457
L457

Reputation: 1032

How do I select friend ids using the facebook api?

Whenever I call FB.ApiRequest() to send invites it brings up a native facebook menu to quickly select friends.

Is there any similar call which would allow me to select friend's user ids in a similar manner/interface like above.

I want to do this so that a user can monitor only selected friend's scores in an app.

This is my first time playing around with the facebook api, and I couldn't find much info about this in fb's documentation.

Upvotes: 0

Views: 86

Answers (1)

andyrandy
andyrandy

Reputation: 73984

You just need to call /me/friends after authorizing with the user_friends permission and develop your own selector. Keep in mind that you can only get friends who authorized the App too.

Upvotes: 1

Related Questions